HomeSort by relevance Sort by last modified time
    Searched defs:contours (Results 1 - 10 of 10) sorted by null

  /external/opencv/cvaux/src/
cvbgfg_common.cpp 77 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;
extendededges.cpp 50 //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
  /external/freetype/src/autofit/
afhints.h 345 FT_Int max_contours; /* number of allocated contours */
346 FT_Int num_contours; /* number of used contours */
347 AF_Point* contours; /* contours array */ member in struct:AF_GlyphHintsRec_
  /external/opencv/cv/src/
cvdistransform.cpp 828 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 );
cvcontours.cpp 142 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 from the imag
1429 CvSeq* contours = k == 0 ? external_contours : internal_contours; local
    [all...]
  /external/skia/src/gpu/
GrTesselatedPathRenderer.cpp 77 void addVertices(const GrPoint* points, const uint16_t* contours, int numContours) {
82 size_t end = i + contours[j];
233 const GrIndexArray& contours() const { return fContours; } function in class:GrBoundaryTess
521 const GrIndexArray& contours = btess.contours(); local
526 for (int contour = 0; contour < contours.count(); ++contour) {
527 int count = contours[contour];
  /external/freetype/include/freetype/
ftimage.h 342 /* n_contours :: The number of contours in the outline. */
367 /* contours :: An array of `n_contours' shorts, giving the end */
370 /* `0' to `contours[0]', the second one is defined by */
371 /* the points `contours[0]+1' to `contours[1]', etc. */
385 short n_contours; /* number of contours in glyph */
390 short* contours; /* the contour end points */ member in struct:FT_Outline_
417 /* (i.e., `points', `flags', and `contours') are `owned' by the */
426 /* By default, outside contours of an outline are oriented in */
    [all...]
  /external/freetype/src/pshinter/
pshalgo.h 209 PSH_Contour contours; member in struct:PSH_GlyphRec_
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GLES2Canvas.cpp 623 WTF::Vector<size_t> contours; local
644 contours.append(inVertices.size());
654 if (contours.size() == 1 && LoopBlinnMathUtils::isConvex(inVertices.begin(), inVertices.size())) {
683 for (contour = contours.begin(); contour != contours.end(); ++contour) {
    [all...]
  /external/freetype/include/freetype/internal/
tttypes.h 1478 FT_UShort* contours; \/* contour end points *\/ member in struct:TT_GlyphZoneRec_
    [all...]

Completed in 350 milliseconds