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

1 2

  /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/base/
ftgloadr.c 112 FT_FREE( loader->base.outline.contours );
151 current->contours = base->contours + base->n_contours;
247 /* check contours */
258 if ( FT_RENEW_ARRAY( base->contours, old_max, new_max ) )
354 /* adjust contours count in newest outline */
356 current->outline.contours[n] =
357 (short)( current->outline.contours[n] + n_base_points );
384 FT_ARRAY_COPY( out->contours, in->contours,
    [all...]
ftoutln.c 94 last = outline->contours[n];
321 FT_NEW_ARRAY( anoutline->contours, numContours ) )
378 end = outline->contours[n];
380 /* note that we don't accept empty contours */
425 FT_ARRAY_COPY( target->contours, source->contours, source->n_contours );
452 FT_FREE( outline->contours );
566 last = outline->contours[n];
735 (outline)->contours[c - 1] + 1 \
737 (last) = (outline)->points + (outline)->contours[c];
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftgloadr.c 112 FT_FREE( loader->base.outline.contours );
151 current->contours = base->contours + base->n_contours;
247 /* check contours */
258 if ( FT_RENEW_ARRAY( base->contours, old_max, new_max ) )
354 /* adjust contours count in newest outline */
356 current->outline.contours[n] =
357 (short)( current->outline.contours[n] + n_base_points );
384 FT_ARRAY_COPY( out->contours, in->contours,
    [all...]
ftoutln.c 94 last = outline->contours[n];
321 FT_NEW_ARRAY( anoutline->contours, numContours ) )
378 end = outline->contours[n];
380 /* note that we don't accept empty contours */
422 FT_ARRAY_COPY( target->contours, source->contours, source->n_contours );
449 FT_FREE( outline->contours );
563 last = outline->contours[n];
732 (outline)->contours[c - 1] + 1 \
734 (last) = (outline)->points + (outline)->contours[c];
    [all...]
  /cts/apps/CameraITS/tests/rolling_shutter_skew/
test_rolling_shutter_skew.py 38 # A cluster must consist of at least this percentage of the total contours for
304 contours, scratch_img, contour_img, mono_img = find_contours(frame.copy())
309 largest_cluster, cluster_percentage = find_largest_cluster(contours,
356 """Finds contours in the given image.
362 OpenCV-formatted contours, the original image in OpenCV format, a
363 thresholded image with the contours drawn on, and a grayscale version of
373 # contours for the LEDs if we ignore the green and blue channels. This also
379 # Remove noise before finding contours by eroding the thresholded image and
386 # Need to convert it back to BGR if we want to draw colored contours.
390 contours, _ = cv2.findContours(opening
    [all...]
  /external/freetype/src/autofit/
afhints.c 309 AF_Point* contour = hints->contours;
690 if ( hints->contours != hints->embedded.contours )
691 FT_FREE( hints->contours );
740 /* first of all, reallocate the contours array if necessary */
746 if ( !hints->contours )
748 hints->contours = hints->embedded.contours;
754 if ( hints->contours == hints->embedded.contours )
    [all...]
afhints.h 332 #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_::__anon19459
  /external/skia/experimental/SimpleCocoaApp/
SimpleApp.mm 153 int contours = showPathContour(iter);
157 bool expected = (path.getFillType() == SkPath::kWinding_FillType && contours == 1)
158 || (path.getFillType() == SkPath::kEvenOdd_FillType && contours == 2);
160 SkDebugf("suspect contours=%d\n", contours);
  /cts/apps/CameraITS/tests/scene4/
test_aspect_ratio_and_crop.py 275 contours, hierarchy = cv2.findContours(255-img_bw, cv2.RETR_TREE,
283 for ct, hrch in zip(contours, hierarchy[0]):
295 prt_shape = component_shape(contours[parent])
296 prt_area = cv2.contourArea(contours[parent])
  /external/freetype/src/truetype/
ttgload.c 313 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 */
718 zone->contours = (FT_UShort*)load->outline.contours + start_contour;
1583 short contours[4] = { 0, 1, 2, 3 }; local
1756 short* contours = NULL; local
    [all...]
  /external/freetype/include/freetype/
ftimage.h 293 /* 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 */
    [all...]
  /external/pdfium/third_party/freetype/include/freetype/
ftimage.h 293 /* 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 */
    [all...]
  /external/pdfium/third_party/freetype/src/truetype/
ttgload.c 312 FT_TRACE5(( " # of contours: %d\n", loader->n_contours ));
344 /* check that we can add the contours to the glyph */
349 /* reading the contours' endpoints & number of points */
350 cont = gloader->current.outline.contours;
353 /* check space for contours array + instructions count */
370 /* unordered contours: this is invalid */
715 zone->contours = (FT_UShort*)load->outline.contours + start_contour;
1533 short contours[4] = { 0, 1, 2, 3 }; local
1660 short* contours = NULL; local
    [all...]
  /external/skia/src/gpu/
GrTessellator.cpp 22 * 1) Linearize the path contours into piecewise linear segments (path_to_contours()).
32 * 5b) Apply fill rules to extract boundary contours from the polygons (extract_boundaries()).
131 * Vertices are used in three ways: first, the path contours are converted into a
134 * in Y) using the same fPrev/fNext pointers that were used for the contours, to avoid
154 Vertex* fPrev; // Linked list of contours, then Y-sorted vertices.
694 // Stage 1: convert the input path to a set of linear contours (linked list of Vertices).
697 VertexList* contours, SkArenaAlloc& alloc, bool *isLinear) {
702 VertexList* contour = contours;
708 append_point_to_contour(quad[i], contours, alloc);
    [all...]
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftimage.h 293 /* 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 */
    [all...]
  /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 );
  /external/freetype/src/pshinter/
pshalgo.c 941 if ( glyph->contours[n].count < 4 )
945 first = glyph->contours[n].start;
1044 FT_FREE( glyph->contours );
1169 /* allocate and setup points + contours arrays */
1171 FT_NEW_ARRAY( glyph->contours, outline->n_contours ) )
1180 PSH_Contour contour = glyph->contours;
    [all...]
pshalgo.h 195 PSH_Contour contours; member in struct:PSH_GlyphRec_
  /external/pdfium/third_party/freetype/src/pshinter/
pshalgo.c 941 if ( glyph->contours[n].count < 4 )
945 first = glyph->contours[n].start;
1044 FT_FREE( glyph->contours );
1169 /* allocate and setup points + contours arrays */
1171 FT_NEW_ARRAY( glyph->contours, outline->n_contours ) )
    [all...]
pshalgo.h 195 PSH_Contour contours; member in struct:PSH_GlyphRec_
  /external/freetype/include/freetype/internal/
tttypes.h 1599 FT_UShort* contours; \/* contour end points *\/ member in struct:TT_GlyphZoneRec_
    [all...]
  /external/pdfium/third_party/freetype/include/freetype/internal/
tttypes.h 1450 FT_UShort* contours; \/* contour end points *\/ member in struct:TT_GlyphZoneRec_
    [all...]
  /external/freetype/src/psaux/
psobjs.c     [all...]

Completed in 908 milliseconds

1 2