mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-06-08 02:12:40 +08:00
doxygen classify/mfoutline.cpp
This commit is contained in:
parent
84788d49a0
commit
29f36ca1e9
@ -35,7 +35,7 @@
|
|||||||
----------------------------------------------------------------------------*/
|
----------------------------------------------------------------------------*/
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
// Convert a blob into a list of MFOUTLINEs (float-based microfeature format).
|
/** Convert a blob into a list of MFOUTLINEs (float-based microfeature format). */
|
||||||
LIST ConvertBlob(TBLOB *blob) {
|
LIST ConvertBlob(TBLOB *blob) {
|
||||||
LIST outlines = NIL_LIST;
|
LIST outlines = NIL_LIST;
|
||||||
return (blob == NULL)
|
return (blob == NULL)
|
||||||
@ -45,7 +45,7 @@ LIST ConvertBlob(TBLOB *blob) {
|
|||||||
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
// Convert a TESSLINE into the float-based MFOUTLINE micro-feature format.
|
/** Convert a TESSLINE into the float-based MFOUTLINE micro-feature format. */
|
||||||
MFOUTLINE ConvertOutline(TESSLINE *outline) {
|
MFOUTLINE ConvertOutline(TESSLINE *outline) {
|
||||||
MFEDGEPT *NewPoint;
|
MFEDGEPT *NewPoint;
|
||||||
MFOUTLINE MFOutline = NIL_LIST;
|
MFOUTLINE MFOutline = NIL_LIST;
|
||||||
@ -81,12 +81,13 @@ MFOUTLINE ConvertOutline(TESSLINE *outline) {
|
|||||||
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
// Convert a tree of outlines to a list of MFOUTLINEs (lists of MFEDGEPTs).
|
/**
|
||||||
//
|
* Convert a tree of outlines to a list of MFOUTLINEs (lists of MFEDGEPTs).
|
||||||
// Parameters:
|
*
|
||||||
// outline first outline to be converted
|
* @param outline first outline to be converted
|
||||||
// mf_outlines list to add converted outlines to
|
* @param mf_outlines list to add converted outlines to
|
||||||
// outline_type are the outlines outer or holes?
|
* @param outline_type are the outlines outer or holes?
|
||||||
|
*/
|
||||||
LIST ConvertOutlines(TESSLINE *outline,
|
LIST ConvertOutlines(TESSLINE *outline,
|
||||||
LIST mf_outlines,
|
LIST mf_outlines,
|
||||||
OUTLINETYPE outline_type) {
|
OUTLINETYPE outline_type) {
|
||||||
@ -102,26 +103,23 @@ LIST ConvertOutlines(TESSLINE *outline,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
/**
|
||||||
|
* This routine searches thru the specified outline, computes
|
||||||
|
* a slope for each vector in the outline, and marks each
|
||||||
|
* vector as having one of the following directions:
|
||||||
|
* N, S, E, W, NE, NW, SE, SW
|
||||||
|
* This information is then stored in the outline and the
|
||||||
|
* outline is returned.
|
||||||
|
* @param Outline micro-feature outline to analyze
|
||||||
|
* @param MinSlope controls "snapping" of segments to horizontal
|
||||||
|
* @param MaxSlope controls "snapping" of segments to vertical
|
||||||
|
* @return none
|
||||||
|
* @note Exceptions: none
|
||||||
|
* @note History: 7/21/89, DSJ, Created.
|
||||||
|
*/
|
||||||
void FindDirectionChanges(MFOUTLINE Outline,
|
void FindDirectionChanges(MFOUTLINE Outline,
|
||||||
FLOAT32 MinSlope,
|
FLOAT32 MinSlope,
|
||||||
FLOAT32 MaxSlope) {
|
FLOAT32 MaxSlope) {
|
||||||
/*
|
|
||||||
** Parameters:
|
|
||||||
** Outline micro-feature outline to analyze
|
|
||||||
** MinSlope controls "snapping" of segments to horizontal
|
|
||||||
** MaxSlope controls "snapping" of segments to vertical
|
|
||||||
** Globals: none
|
|
||||||
** Operation:
|
|
||||||
** This routine searches thru the specified outline, computes
|
|
||||||
** a slope for each vector in the outline, and marks each
|
|
||||||
** vector as having one of the following directions:
|
|
||||||
** N, S, E, W, NE, NW, SE, SW
|
|
||||||
** This information is then stored in the outline and the
|
|
||||||
** outline is returned.
|
|
||||||
** Return: none
|
|
||||||
** Exceptions: none
|
|
||||||
** History: 7/21/89, DSJ, Created.
|
|
||||||
*/
|
|
||||||
MFEDGEPT *Current;
|
MFEDGEPT *Current;
|
||||||
MFEDGEPT *Last;
|
MFEDGEPT *Last;
|
||||||
MFOUTLINE EdgePoint;
|
MFOUTLINE EdgePoint;
|
||||||
@ -145,18 +143,15 @@ void FindDirectionChanges(MFOUTLINE Outline,
|
|||||||
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void FreeMFOutline(void *arg) { //MFOUTLINE Outline)
|
/**
|
||||||
/*
|
* This routine deallocates all of the memory consumed by
|
||||||
** Parameters:
|
* a micro-feature outline.
|
||||||
** Outline micro-feature outline to be freed
|
* @param arg micro-feature outline to be freed
|
||||||
** Globals: none
|
* @return none
|
||||||
** Operation:
|
* @note Exceptions: none
|
||||||
** This routine deallocates all of the memory consumed by
|
* @note History: 7/27/89, DSJ, Created.
|
||||||
** a micro-feature outline.
|
|
||||||
** Return: none
|
|
||||||
** Exceptions: none
|
|
||||||
** History: 7/27/89, DSJ, Created.
|
|
||||||
*/
|
*/
|
||||||
|
void FreeMFOutline(void *arg) { //MFOUTLINE Outline)
|
||||||
MFOUTLINE Start;
|
MFOUTLINE Start;
|
||||||
MFOUTLINE Outline = (MFOUTLINE) arg;
|
MFOUTLINE Outline = (MFOUTLINE) arg;
|
||||||
|
|
||||||
@ -172,39 +167,35 @@ void FreeMFOutline(void *arg) { //MFOUTLINE Outline
|
|||||||
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void FreeOutlines(LIST Outlines) {
|
/**
|
||||||
/*
|
* Release all memory consumed by the specified list
|
||||||
** Parameters:
|
* of outlines.
|
||||||
** Outlines list of mf-outlines to be freed
|
* @param Outlines list of mf-outlines to be freed
|
||||||
** Globals: none
|
* @return none
|
||||||
** Operation: Release all memory consumed by the specified list
|
* @note Exceptions: none
|
||||||
** of outlines.
|
* @note History: Thu Dec 13 16:14:50 1990, DSJ, Created.
|
||||||
** Return: none
|
|
||||||
** Exceptions: none
|
|
||||||
** History: Thu Dec 13 16:14:50 1990, DSJ, Created.
|
|
||||||
*/
|
*/
|
||||||
|
void FreeOutlines(LIST Outlines) {
|
||||||
destroy_nodes(Outlines, FreeMFOutline);
|
destroy_nodes(Outlines, FreeMFOutline);
|
||||||
} /* FreeOutlines */
|
} /* FreeOutlines */
|
||||||
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void MarkDirectionChanges(MFOUTLINE Outline) {
|
/**
|
||||||
/*
|
* This routine searches thru the specified outline and finds
|
||||||
** Parameters:
|
* the points at which the outline changes direction. These
|
||||||
** Outline micro-feature outline to analyze
|
* points are then marked as "extremities". This routine is
|
||||||
** Globals: none
|
* used as an alternative to FindExtremities(). It forces the
|
||||||
** Operation:
|
* endpoints of the microfeatures to be at the direction
|
||||||
** This routine searches thru the specified outline and finds
|
* changes rather than at the midpoint between direction
|
||||||
** the points at which the outline changes direction. These
|
* changes.
|
||||||
** points are then marked as "extremities". This routine is
|
* @param Outline micro-feature outline to analyze
|
||||||
** used as an alternative to FindExtremities(). It forces the
|
* @return none
|
||||||
** endpoints of the microfeatures to be at the direction
|
* @note Globals: none
|
||||||
** changes rather than at the midpoint between direction
|
* @note Exceptions: none
|
||||||
** changes.
|
* @note History: 6/29/90, DSJ, Created.
|
||||||
** Return: none
|
|
||||||
** Exceptions: none
|
|
||||||
** History: 6/29/90, DSJ, Created.
|
|
||||||
*/
|
*/
|
||||||
|
void MarkDirectionChanges(MFOUTLINE Outline) {
|
||||||
MFOUTLINE Current;
|
MFOUTLINE Current;
|
||||||
MFOUTLINE Last;
|
MFOUTLINE Last;
|
||||||
MFOUTLINE First;
|
MFOUTLINE First;
|
||||||
@ -225,28 +216,26 @@ void MarkDirectionChanges(MFOUTLINE Outline) {
|
|||||||
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
// Return a new edge point for a micro-feature outline.
|
/** Return a new edge point for a micro-feature outline. */
|
||||||
MFEDGEPT *NewEdgePoint() {
|
MFEDGEPT *NewEdgePoint() {
|
||||||
return ((MFEDGEPT *) alloc_struct(sizeof(MFEDGEPT), "MFEDGEPT"));
|
return ((MFEDGEPT *) alloc_struct(sizeof(MFEDGEPT), "MFEDGEPT"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
MFOUTLINE NextExtremity(MFOUTLINE EdgePoint) {
|
/**
|
||||||
/*
|
* This routine returns the next point in the micro-feature
|
||||||
** Parameters:
|
* outline that is an extremity. The search starts after
|
||||||
** EdgePoint start search from this point
|
* EdgePoint. The routine assumes that the outline being
|
||||||
** Globals: none
|
* searched is not a degenerate outline (i.e. it must have
|
||||||
** Operation:
|
* 2 or more edge points).
|
||||||
** This routine returns the next point in the micro-feature
|
* @param EdgePoint start search from this point
|
||||||
** outline that is an extremity. The search starts after
|
* @return Next extremity in the outline after EdgePoint.
|
||||||
** EdgePoint. The routine assumes that the outline being
|
* @note Globals: none
|
||||||
** searched is not a degenerate outline (i.e. it must have
|
* @note Exceptions: none
|
||||||
** 2 or more edge points).
|
* @note History: 7/26/89, DSJ, Created.
|
||||||
** Return: Next extremity in the outline after EdgePoint.
|
|
||||||
** Exceptions: none
|
|
||||||
** History: 7/26/89, DSJ, Created.
|
|
||||||
*/
|
*/
|
||||||
|
MFOUTLINE NextExtremity(MFOUTLINE EdgePoint) {
|
||||||
EdgePoint = NextPointAfter(EdgePoint);
|
EdgePoint = NextPointAfter(EdgePoint);
|
||||||
while (!PointAt(EdgePoint)->ExtremityMark)
|
while (!PointAt(EdgePoint)->ExtremityMark)
|
||||||
EdgePoint = NextPointAfter(EdgePoint);
|
EdgePoint = NextPointAfter(EdgePoint);
|
||||||
@ -257,25 +246,23 @@ MFOUTLINE NextExtremity(MFOUTLINE EdgePoint) {
|
|||||||
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
/**
|
||||||
|
* This routine normalizes the coordinates of the specified
|
||||||
|
* outline so that the outline is deskewed down to the
|
||||||
|
* baseline, translated so that x=0 is at XOrigin, and scaled
|
||||||
|
* so that the height of a character cell from descender to
|
||||||
|
* ascender is 1. Of this height, 0.25 is for the descender,
|
||||||
|
* 0.25 for the ascender, and 0.5 for the x-height. The
|
||||||
|
* y coordinate of the baseline is 0.
|
||||||
|
* @param Outline outline to be normalized
|
||||||
|
* @param XOrigin x-origin of text
|
||||||
|
* @return none
|
||||||
|
* @note Globals: none
|
||||||
|
* @note Exceptions: none
|
||||||
|
* @note History: 8/2/89, DSJ, Created.
|
||||||
|
*/
|
||||||
void NormalizeOutline(MFOUTLINE Outline,
|
void NormalizeOutline(MFOUTLINE Outline,
|
||||||
FLOAT32 XOrigin) {
|
FLOAT32 XOrigin) {
|
||||||
/*
|
|
||||||
** Parameters:
|
|
||||||
** Outline outline to be normalized
|
|
||||||
** XOrigin x-origin of text
|
|
||||||
** Globals: none
|
|
||||||
** Operation:
|
|
||||||
** This routine normalizes the coordinates of the specified
|
|
||||||
** outline so that the outline is deskewed down to the
|
|
||||||
** baseline, translated so that x=0 is at XOrigin, and scaled
|
|
||||||
** so that the height of a character cell from descender to
|
|
||||||
** ascender is 1. Of this height, 0.25 is for the descender,
|
|
||||||
** 0.25 for the ascender, and 0.5 for the x-height. The
|
|
||||||
** y coordinate of the baseline is 0.
|
|
||||||
** Return: none
|
|
||||||
** Exceptions: none
|
|
||||||
** History: 8/2/89, DSJ, Created.
|
|
||||||
*/
|
|
||||||
if (Outline == NIL_LIST)
|
if (Outline == NIL_LIST)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -292,27 +279,27 @@ void NormalizeOutline(MFOUTLINE Outline,
|
|||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
namespace tesseract {
|
namespace tesseract {
|
||||||
|
/**
|
||||||
|
* This routine normalizes every outline in Outlines
|
||||||
|
* according to the currently selected normalization method.
|
||||||
|
* It also returns the scale factors that it used to do this
|
||||||
|
* scaling. The scale factors returned represent the x and
|
||||||
|
* y sizes in the normalized coordinate system that correspond
|
||||||
|
* to 1 pixel in the original coordinate system.
|
||||||
|
*
|
||||||
|
* Globals:
|
||||||
|
* - classify_norm_method method being used for normalization
|
||||||
|
* - classify_char_norm_range map radius of gyration to this value
|
||||||
|
* @param Outlines list of outlines to be normalized
|
||||||
|
* @param XScale x-direction scale factor used by routine
|
||||||
|
* @param YScale y-direction scale factor used by routine
|
||||||
|
* @return none (Outlines are changed and XScale and YScale are updated)
|
||||||
|
* @note Exceptions: none
|
||||||
|
* @note History: Fri Dec 14 08:14:55 1990, DSJ, Created.
|
||||||
|
*/
|
||||||
void Classify::NormalizeOutlines(LIST Outlines,
|
void Classify::NormalizeOutlines(LIST Outlines,
|
||||||
FLOAT32 *XScale,
|
FLOAT32 *XScale,
|
||||||
FLOAT32 *YScale) {
|
FLOAT32 *YScale) {
|
||||||
/*
|
|
||||||
** Parameters:
|
|
||||||
** Outlines list of outlines to be normalized
|
|
||||||
** XScale x-direction scale factor used by routine
|
|
||||||
** YScale y-direction scale factor used by routine
|
|
||||||
** Globals:
|
|
||||||
** classify_norm_method method being used for normalization
|
|
||||||
** classify_char_norm_range map radius of gyration to this value
|
|
||||||
** Operation: This routine normalizes every outline in Outlines
|
|
||||||
** according to the currently selected normalization method.
|
|
||||||
** It also returns the scale factors that it used to do this
|
|
||||||
** scaling. The scale factors returned represent the x and
|
|
||||||
** y sizes in the normalized coordinate system that correspond
|
|
||||||
** to 1 pixel in the original coordinate system.
|
|
||||||
** Return: none (Outlines are changed and XScale and YScale are updated)
|
|
||||||
** Exceptions: none
|
|
||||||
** History: Fri Dec 14 08:14:55 1990, DSJ, Created.
|
|
||||||
*/
|
|
||||||
MFOUTLINE Outline;
|
MFOUTLINE Outline;
|
||||||
|
|
||||||
switch (classify_norm_method) {
|
switch (classify_norm_method) {
|
||||||
@ -331,25 +318,23 @@ void Classify::NormalizeOutlines(LIST Outlines,
|
|||||||
} /* NormalizeOutlines */
|
} /* NormalizeOutlines */
|
||||||
} // namespace tesseract
|
} // namespace tesseract
|
||||||
|
|
||||||
/**----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
Private Code
|
Private Code
|
||||||
----------------------------------------------------------------------------**/
|
----------------------------------------------------------------------------*/
|
||||||
/*---------------------------------------------------------------------------*/
|
/**
|
||||||
void ChangeDirection(MFOUTLINE Start, MFOUTLINE End, DIRECTION Direction) {
|
* Change the direction of every vector in the specified
|
||||||
/*
|
* outline segment to Direction. The segment to be changed
|
||||||
** Parameters:
|
* starts at Start and ends at End. Note that the previous
|
||||||
** Start, End defines segment of outline to be modified
|
* direction of End must also be changed to reflect the
|
||||||
** Direction new direction to assign to segment
|
* change in direction of the point before it.
|
||||||
** Globals: none
|
* @param Start, End defines segment of outline to be modified
|
||||||
** Operation: Change the direction of every vector in the specified
|
* @param Direction new direction to assign to segment
|
||||||
** outline segment to Direction. The segment to be changed
|
* @return none
|
||||||
** starts at Start and ends at End. Note that the previous
|
* @note Globals: none
|
||||||
** direction of End must also be changed to reflect the
|
* @note Exceptions: none
|
||||||
** change in direction of the point before it.
|
* @note History: Fri May 4 10:42:04 1990, DSJ, Created.
|
||||||
** Return: none
|
|
||||||
** Exceptions: none
|
|
||||||
** History: Fri May 4 10:42:04 1990, DSJ, Created.
|
|
||||||
*/
|
*/
|
||||||
|
void ChangeDirection(MFOUTLINE Start, MFOUTLINE End, DIRECTION Direction) {
|
||||||
MFOUTLINE Current;
|
MFOUTLINE Current;
|
||||||
|
|
||||||
for (Current = Start; Current != End; Current = NextPointAfter (Current))
|
for (Current = Start; Current != End; Current = NextPointAfter (Current))
|
||||||
@ -360,21 +345,18 @@ void ChangeDirection(MFOUTLINE Start, MFOUTLINE End, DIRECTION Direction) {
|
|||||||
} /* ChangeDirection */
|
} /* ChangeDirection */
|
||||||
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/**
|
||||||
void CharNormalizeOutline(MFOUTLINE Outline, const DENORM& cn_denorm) {
|
* This routine normalizes each point in Outline by
|
||||||
/*
|
* translating it to the specified center and scaling it
|
||||||
** Parameters:
|
* anisotropically according to the given scale factors.
|
||||||
** Outline outline to be character normalized
|
* @param Outline outline to be character normalized
|
||||||
** XCenter, YCenter center point for normalization
|
* @param cn_denorm
|
||||||
** XScale, YScale scale factors for normalization
|
* @return none
|
||||||
** Globals: none
|
* @note Globals: none
|
||||||
** Operation: This routine normalizes each point in Outline by
|
* @note Exceptions: none
|
||||||
** translating it to the specified center and scaling it
|
* @note History: Fri Dec 14 10:27:11 1990, DSJ, Created.
|
||||||
** anisotropically according to the given scale factors.
|
|
||||||
** Return: none
|
|
||||||
** Exceptions: none
|
|
||||||
** History: Fri Dec 14 10:27:11 1990, DSJ, Created.
|
|
||||||
*/
|
*/
|
||||||
|
void CharNormalizeOutline(MFOUTLINE Outline, const DENORM& cn_denorm) {
|
||||||
MFOUTLINE First, Current;
|
MFOUTLINE First, Current;
|
||||||
MFEDGEPT *CurrentPoint;
|
MFEDGEPT *CurrentPoint;
|
||||||
|
|
||||||
@ -397,32 +379,29 @@ void CharNormalizeOutline(MFOUTLINE Outline, const DENORM& cn_denorm) {
|
|||||||
} /* CharNormalizeOutline */
|
} /* CharNormalizeOutline */
|
||||||
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/**
|
||||||
|
* This routine computes the slope from Start to Finish and
|
||||||
|
* and then computes the approximate direction of the line
|
||||||
|
* segment from Start to Finish. The direction is quantized
|
||||||
|
* into 8 buckets:
|
||||||
|
* N, S, E, W, NE, NW, SE, SW
|
||||||
|
* Both the slope and the direction are then stored into
|
||||||
|
* the appropriate fields of the Start edge point. The
|
||||||
|
* direction is also stored into the PreviousDirection field
|
||||||
|
* of the Finish edge point.
|
||||||
|
* @param Start starting point to compute direction from
|
||||||
|
* @param Finish finishing point to compute direction to
|
||||||
|
* @param MinSlope slope below which lines are horizontal
|
||||||
|
* @param MaxSlope slope above which lines are vertical
|
||||||
|
* @return none
|
||||||
|
* @note Globals: none
|
||||||
|
* @note Exceptions: none
|
||||||
|
* @note History: 7/25/89, DSJ, Created.
|
||||||
|
*/
|
||||||
void ComputeDirection(MFEDGEPT *Start,
|
void ComputeDirection(MFEDGEPT *Start,
|
||||||
MFEDGEPT *Finish,
|
MFEDGEPT *Finish,
|
||||||
FLOAT32 MinSlope,
|
FLOAT32 MinSlope,
|
||||||
FLOAT32 MaxSlope) {
|
FLOAT32 MaxSlope) {
|
||||||
/*
|
|
||||||
** Parameters:
|
|
||||||
** Start starting point to compute direction from
|
|
||||||
** Finish finishing point to compute direction to
|
|
||||||
** MinSlope slope below which lines are horizontal
|
|
||||||
** MaxSlope slope above which lines are vertical
|
|
||||||
** Globals: none
|
|
||||||
** Operation:
|
|
||||||
** This routine computes the slope from Start to Finish and
|
|
||||||
** and then computes the approximate direction of the line
|
|
||||||
** segment from Start to Finish. The direction is quantized
|
|
||||||
** into 8 buckets:
|
|
||||||
** N, S, E, W, NE, NW, SE, SW
|
|
||||||
** Both the slope and the direction are then stored into
|
|
||||||
** the appropriate fields of the Start edge point. The
|
|
||||||
** direction is also stored into the PreviousDirection field
|
|
||||||
** of the Finish edge point.
|
|
||||||
** Return: none
|
|
||||||
** Exceptions: none
|
|
||||||
** History: 7/25/89, DSJ, Created.
|
|
||||||
*/
|
|
||||||
FVECTOR Delta;
|
FVECTOR Delta;
|
||||||
|
|
||||||
Delta.x = Finish->Point.x - Start->Point.x;
|
Delta.x = Finish->Point.x - Start->Point.x;
|
||||||
@ -471,23 +450,20 @@ void ComputeDirection(MFEDGEPT *Start,
|
|||||||
Start->Direction = west;
|
Start->Direction = west;
|
||||||
}
|
}
|
||||||
Finish->PreviousDirection = Start->Direction;
|
Finish->PreviousDirection = Start->Direction;
|
||||||
} /* ComputeDirection */
|
}
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/**
|
||||||
MFOUTLINE NextDirectionChange(MFOUTLINE EdgePoint) {
|
* This routine returns the next point in the micro-feature
|
||||||
/*
|
* outline that has a direction different than EdgePoint. The
|
||||||
** Parameters:
|
* routine assumes that the outline being searched is not a
|
||||||
** EdgePoint start search from this point
|
* degenerate outline (i.e. it must have 2 or more edge points).
|
||||||
** Globals: none
|
* @param EdgePoint start search from this point
|
||||||
** Operation:
|
* @return Point of next direction change in micro-feature outline.
|
||||||
** This routine returns the next point in the micro-feature
|
* @note Globals: none
|
||||||
** outline that has a direction different than EdgePoint. The
|
* @note Exceptions: none
|
||||||
** routine assumes that the outline being searched is not a
|
* @note History: 7/25/89, DSJ, Created.
|
||||||
** degenerate outline (i.e. it must have 2 or more edge points).
|
|
||||||
** Return: Point of next direction change in micro-feature outline.
|
|
||||||
** Exceptions: none
|
|
||||||
** History: 7/25/89, DSJ, Created.
|
|
||||||
*/
|
*/
|
||||||
|
MFOUTLINE NextDirectionChange(MFOUTLINE EdgePoint) {
|
||||||
DIRECTION InitialDirection;
|
DIRECTION InitialDirection;
|
||||||
|
|
||||||
InitialDirection = PointAt (EdgePoint)->Direction;
|
InitialDirection = PointAt (EdgePoint)->Direction;
|
||||||
@ -501,4 +477,4 @@ MFOUTLINE NextDirectionChange(MFOUTLINE EdgePoint) {
|
|||||||
next_pt != NULL && !PointAt(next_pt)->Hidden);
|
next_pt != NULL && !PointAt(next_pt)->Hidden);
|
||||||
|
|
||||||
return (EdgePoint);
|
return (EdgePoint);
|
||||||
} /* NextDirectionChange */
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user