Searched defs:contours (Results 1 - 13 of 13) sorted by relevance

/external/freetype/src/tools/ftfuzzer/
H A Drasterfuzzer.cc109 short contours[1]; local
110 contours[0] = n_points - 1;
118 contours, // contours
/external/opencv/cvaux/src/
H A Dextendededges.cpp50 //create lists of segments of all contours from image
55 CvSeq* contours = 0; local
56 cvFindContours( image, tmp_storage, &contours, sizeof(CvContour), CV_RETR_LIST, CV_CHAIN_APPROX_NONE );
59 //iterate through contours
61 CvSeq* current = contours;
114 //free temporary memstorage with initial contours
123 //iplSet(image, 0 ); // this can cause double edges if two contours have common edge
H A Dcvbgfg_common.cpp77 CvSeq *contours, *c; local
85 // find contours around only bigger regions
106 contours = cvEndFindContours( &scanner );
110 for( c=contours; c != 0; c = c->h_next )
117 contours = 0;
120 return contours;
/external/freetype/src/autofit/
H A Dafhints.h332 #define AF_CONTOURS_EMBEDDED 8 /* number of embedded contours */
348 FT_Int max_contours; /* number of allocated contours */
349 FT_Int num_contours; /* number of used contours */
350 AF_Point* contours; /* contours array */ member in struct:AF_GlyphHintsRec_
366 AF_Point contours[AF_CONTOURS_EMBEDDED]; member in struct:AF_GlyphHintsRec_::__anon7318
/external/opencv/cv/src/
H A Dcvdistransform.cpp828 CvSeq *contours = 0; local
835 cvFindContours( src_copy, st, &contours, sizeof(CvContour),
838 for( label = 1; contours != 0; contours = contours->h_next, label++ )
841 cvDrawContours( labels, contours, area_color, area_color, -255, -1, 8 );
H A Dcvcontours.cpp142 Structure that is used for sequental retrieving contours from the image.
147 CvMemStorage *storage1; /* contains fetched contours */
148 CvMemStorage *storage2; /* contains approximated contours
171 1 - all the contours w/o any hierarchy
173 external contours and holes) */
175 int seq_type1; /* type of fetched contours */
176 int header_size1; /* hdr size of fetched contours */
177 int elem_size1; /* elem size of fetched contours */
179 int header_size2; /* the same for approx. contours */
353 The 1st variant can be used to retrieve and store all the contours fro
1429 CvSeq* contours = k == 0 ? external_contours : internal_contours; local
[all...]
/external/freetype/include/freetype/
H A Dftimage.h293 /* n_contours :: The number of contours in the outline. */
318 /* contours :: An array of `n_contours' shorts, giving the end */
321 /* `0' to `contours[0]', the second one is defined by */
322 /* the points `contours[0]+1' to `contours[1]', etc. */
336 short n_contours; /* number of contours in glyph */
341 short* contours; /* the contour end points */ member in struct:FT_Outline_
370 /* (i.e., `points', `flags', and `contours') are `owned' by the */
379 /* By default, outside contours of an outline are oriented in */
710 /* contours
[all...]
/external/freetype/src/pshinter/
H A Dpshalgo.h195 PSH_Contour contours; member in struct:PSH_GlyphRec_
/external/freetype/src/truetype/
H A Dttgload.c314 FT_TRACE5(( " # of contours: %d\n", loader->n_contours ));
345 /* check that we can add the contours to the glyph */
350 /* reading the contours' endpoints & number of points */
351 cont = gloader->current.outline.contours;
354 /* check space for contours array + instructions count */
371 /* unordered contours: this is invalid */
766 zone->contours = (FT_UShort*)load->outline.contours + start_contour;
1669 short contours[4] = { 0, 1, 2, 3 }; local
1687 outline.contours
1846 short* contours = NULL; local
[all...]
/external/freetype/include/freetype/internal/
H A Dtttypes.h1582 /* max_contours :: Max size in links contours of the zone. */
1586 /* n_contours :: The current number of contours in the zone. */
1595 /* contours :: The contours end points. */
1605 FT_Short n_contours; /* number of contours */
1612 FT_UShort* contours; /* contour end points */ member in struct:TT_GlyphZoneRec_
/external/opencv/cv/include/
H A Dcvcompat.h881 CV_INLINE void cvPolyLineAA( CvArr* img, CvPoint** pts, int* npts, int contours, argument
884 cvPolyLine( img, pts, npts, contours, is_closed,
/external/skia/src/gpu/
H A DGrTessellator.cpp25 * 1) Linearize the path contours into piecewise linear segments (path_to_contours()).
35 * 5b) Apply fill rules to extract boundary contours from the polygons (extract_boundaries()).
138 * Vertices are used in three ways: first, the path contours are converted into a
141 * in Y) using the same fPrev/fNext pointers that were used for the contours, to avoid
161 Vertex* fPrev; // Linked list of contours, then Y-sorted vertices.
759 // Stage 1: convert the input path to a set of linear contours (linked list of Vertices).
762 VertexList* contours, SkArenaAlloc& alloc, bool *isLinear) {
767 VertexList* contour = contours;
773 append_point_to_contour(quad[i], contours, alloc);
1251 void sanitize_contours(VertexList* contours, in argument
761 path_to_contours(const SkPath& path, SkScalar tolerance, const SkRect& clipBounds, VertexList* contours, SkArenaAlloc& alloc, bool *isLinear) argument
1297 build_edges(VertexList* contours, int contourCnt, VertexList* mesh, Comparator& c, SkArenaAlloc& alloc) argument
2148 contours_to_mesh(VertexList* contours, int contourCnt, bool antialias, VertexList* mesh, Comparator& c, SkArenaAlloc& alloc) argument
2183 contours_to_polys(VertexList* contours, int contourCnt, SkPath::FillType fillType, const SkRect& pathBounds, bool antialias, VertexList* outerMesh, SkArenaAlloc& alloc) argument
[all...]
/external/skqp/src/gpu/
H A DGrTessellator.cpp25 * 1) Linearize the path contours into piecewise linear segments (path_to_contours()).
35 * 5b) Apply fill rules to extract boundary contours from the polygons (extract_boundaries()).
138 * Vertices are used in three ways: first, the path contours are converted into a
141 * in Y) using the same fPrev/fNext pointers that were used for the contours, to avoid
161 Vertex* fPrev; // Linked list of contours, then Y-sorted vertices.
759 // Stage 1: convert the input path to a set of linear contours (linked list of Vertices).
762 VertexList* contours, SkArenaAlloc& alloc, bool *isLinear) {
767 VertexList* contour = contours;
773 append_point_to_contour(quad[i], contours, alloc);
1251 void sanitize_contours(VertexList* contours, in argument
761 path_to_contours(const SkPath& path, SkScalar tolerance, const SkRect& clipBounds, VertexList* contours, SkArenaAlloc& alloc, bool *isLinear) argument
1297 build_edges(VertexList* contours, int contourCnt, VertexList* mesh, Comparator& c, SkArenaAlloc& alloc) argument
2148 contours_to_mesh(VertexList* contours, int contourCnt, bool antialias, VertexList* mesh, Comparator& c, SkArenaAlloc& alloc) argument
2183 contours_to_polys(VertexList* contours, int contourCnt, SkPath::FillType fillType, const SkRect& pathBounds, bool antialias, VertexList* outerMesh, SkArenaAlloc& alloc) argument
[all...]

Completed in 410 milliseconds