HomeSort by relevance Sort by last modified time
    Searched full:contours (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/skia/legacy/src/core/
SkConcaveToTriangles.h 18 // The polygon can be convex or concave, and can have holes or multiple contours
20 // The holes must have opposite orientation of the outer contours, whereas
22 // Contours should be joined by zero-thickness double-edges, to mimic a single
  /external/freetype/src/base/
ftgloadr.c 111 FT_FREE( loader->base.outline.contours );
150 current->contours = base->contours + base->n_contours;
245 /* check contours */
256 if ( FT_RENEW_ARRAY( base->contours, old_max, new_max ) )
349 /* adjust contours count in newest outline */
351 current->outline.contours[n] =
352 (short)( current->outline.contours[n] + n_base_points );
379 FT_ARRAY_COPY( out->contours, in->contours,
    [all...]
ftoutln.c 89 last = outline->contours[n];
309 FT_NEW_ARRAY( anoutline->contours, numContours ) )
366 end = outline->contours[n];
368 /* note that we don't accept empty contours */
408 FT_ARRAY_COPY( target->contours, source->contours, source->n_contours );
431 FT_FREE( outline->contours );
548 last = outline->contours[n];
718 (outline)->contours[c - 1] + 1 \
720 (last) = (outline)->points + (outline)->contours[c];
    [all...]
  /external/opencv/cvaux/src/
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
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;
cvfacedetection.cpp 117 // find contours
289 // find all contours
cvmorphcontours.cpp 534 * Correspondence between points of contours specify by corr
550 int Ni,Nj; // size of contours
566 // Find size of contours.
630 int Ni,Nj; // size of contours
647 // Find size of contours
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.h 80 // Builds a list of contours for the given path.
99 // Tessellates the interior regions of the contours.
115 // The contours described by the path.
LoopBlinnPathProcessor.cpp 609 // supporting multiple contours.
615 // Clear out the contours
737 // contours surround it.
754 // Now iterate through the contours and pick a random segment (in
756 // Find all segments from other contours which intersect this one
758 // x=+infinity makes with those contours. This combined with the
769 // when we cast an XRay, does not intersect the other contours at
    [all...]
  /external/freetype/include/freetype/
ftoutln.h 89 /* operations to indicate the start of new contours in the outline. */
129 /* numContours :: The maximal number of contours within the outline. */
267 /* same sizes (number of points & number of contours) when this */
464 * to determine whether outline contours should be filled or unfilled.
468 * According to the TrueType specification, clockwise contours must
472 * According to the PostScript specification, counter-clockwise contours
ftstroke.h 505 * contours necessary to export one of the `border' or `stroke'
520 * The number of contours.
554 * contours to your outline, but does not try to resize its
596 * contours necessary to export all points/borders from the stroked
608 * The number of contours.
629 * contours to your outline, but does not try to resize its
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/opencv/cv/src/
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...]
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 );
  /external/freetype/src/autofit/
afhints.c 543 FT_FREE( hints->contours );
592 /* first of all, reallocate the contours array if necessary */
599 if ( FT_RENEW_ARRAY( hints->contours, old_max, new_max ) )
659 AF_Point end = points + outline->contours[0];
691 end = points + outline->contours[contour_index];
698 /* set up the contours array */
700 AF_Point* contour = hints->contours;
702 short* end = outline->contours;
1149 AF_Point* contour = hints->contours;
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_
afloader.c 152 FT_ARRAY_COPY( gloader->current.outline.contours,
153 slot->outline.contours,
474 slot->outline.contours = internal->loader->base.outline.contours;
  /external/freetype/src/pshinter/
pshalgo.c 1045 if ( glyph->contours[n].count < 4 )
1049 first = glyph->contours[n].start;
1148 FT_FREE( glyph->contours );
    [all...]
pshalgo.h 209 PSH_Contour contours; member in struct:PSH_GlyphRec_
  /external/freetype/include/freetype/internal/
tttypes.h 1478 FT_UShort* contours; \/* contour end points *\/ member in struct:TT_GlyphZoneRec_
    [all...]
  /external/opencv/cv/include/
cvtypes.h 74 (the contour might have child contours corresponding to the holes)*/
79 Internal structure that is used for sequental retrieving contours from the image.
  /external/freetype/src/truetype/
ttinterp.h 177 /* contours. */
  /external/neven/Embedded/common/src/b_ImageEm/
ToneDownBGSupp.h 56 /** computes the mean BG gray level right on the rectangle contours */
  /packages/apps/Gallery2/res/values-fr/
filtershow_strings.xml 26 <string name="borders" msgid="2067345080568684614">"Contours"</string>
  /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...]

Completed in 622 milliseconds

1 2 3