Feature Detection in FreeType 2 |
IntroductionThis section documents the feature detection pass of the FreeType Auto-Hinter. This pass is in charge of detecting important glyph features that will need special processing when aligning the outline to the pixel grid, mainly stems, serifs as well as point candidates for blue zone alignment. It is performed on the unscaled master outline of a glyph. Prior analysisEach new glyph that is loaded in the auto-hinter is scanned to compute important information associated to each of its points. Mainly, these are:
Segment detection and linkageThe Auto-Hinter first tries to detect segments. A segment is simply a set of successive points aligned either on the horizontal or vertical direction. Each segment has a direction, depending on the contour that includes it. Note that we do not try, for now, to detect and manage diagonal stems. However, this will be added later with a very similar scheme. Then, segments are linked together, in order to recognize vertical or horizontal "stems". Basically, two segments can be linked when they delimit a "span" during the scan-conversion process. Basically, this means :
Each segment is linked to the "closest" linkable segment. We do this by scoring the "distance" between two segments, and keeping the one with the lowest score. The scoring function must be simple and reflects basically the "distance" between the segments. Then when two segments are linked "together", i.e. when we have (seg1->link == seg2 && seg2->link == seg1), they form a vertical or horizontal "stem". On the other hand, when (seg1->link == seg2 && seg2->link != seg1), then seg1 is said to be a "serif" segment, and we put the value (seg2->link) in its field (seg1->serif) to indicate this. a segment is said to be "rounded" when either one of its extrema points is off the outline (cubic control point). Edge detection and linkageSegments that are located on the same coordinate, or close enough from each other are grouped in edges. An edge is simply an axis coordinate that contains one or more segments on it. Each edge inherits the properties of its segments, following a few simple rules:
Note that similarly to segments, we can link edges together, and find "stem" edges, as well as "serif" edges. This information is later used by the control alignment phase, as edges are the basis of grid-alignement and point interpolation in the FreeType Auto-Hinter. Blue edge detectionIt is also necessary to detect which edges need to be aligned against a bottom or top blue zone. This is performed after edge detection and linkage with some simple rules:
|
Page maintained by
David Turner