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

  /external/opencv/cv/src/
cvgeometry.cpp 174 CvSeq* contour = (CvSeq*)_contour; local
181 if( !CV_IS_SEQ(contour) )
183 CV_CALL( contour = cvPointSeqFromMat( CV_SEQ_KIND_CURVE + CV_SEQ_FLAG_CLOSED,
186 else if( CV_IS_SEQ_POLYGON(contour) )
188 if( contour->header_size == sizeof(CvContour) && !measure_dist )
190 CvRect r = ((CvContour*)contour)->rect;
196 else if( CV_IS_SEQ_CHAIN(contour) )
202 CV_ERROR( CV_StsBadArg, "Input contour is neither a valid sequence nor a matrix" );
204 total = contour->total;
205 is_float = CV_SEQ_ELTYPE(contour) == CV_32FC2
    [all...]
cvutils.cpp 47 CvSeq* contour = 0; local
77 contour = (CvSeq*)contour_header;
81 return contour;
cvapprox.cpp 62 CvSeq** contour,
80 assert( chain && contour && buffer );
84 *contour = 0;
400 *contour = cvEndWriteSeq( &writer );
410 /*Applies some approximation algorithm to chain-coded contour(s) and
438 CvSeq *contour; local
448 (CvSeq**)&contour, method ));
455 assert( contour );
457 if( contour->total > 0 )
459 cvBoundingRect( contour, 1 )
993 CvSeq *contour = 0; local
    [all...]
cvcontourtree.cpp 51 icvCalcTriAttr( const CvSeq * contour, CvPoint t2, CvPoint t1, int n1,
58 // Create binary tree representation for the contour
61 // contour - pointer to input contour object.
68 icvCreateContourTree( const CvSeq * contour, CvMemStorage * storage,
84 int *num_p, *num_n, *num1, *num2; /* numbers of input contour points */
96 assert( contour != NULL && contour->total >= 4 );
99 if( contour == NULL )
101 if( contour->total < 4
681 CvSeq* contour = 0; local
    [all...]
cvconvhull.cpp 514 /* contour must be a simple polygon */
530 /* is orientation of hull different from contour one */
743 CvSeq* contour = (CvSeq*)array; local
745 if( CV_IS_SEQ(contour) )
747 if( !CV_IS_SEQ_POLYGON(contour))
753 CV_CALL( contour = cvPointSeqFromMat(
757 if( contour->total == 0 )
760 cvStartReadSeq( contour, &reader, 0 );
764 if( CV_SEQ_ELTYPE( contour ) == CV_32SC2 )
772 for( i = 0; i < contour->total; i++
    [all...]
cvmoments.cpp 85 icvContourMoments( CvSeq* contour, CvMoments* moments )
87 int is_float = CV_SEQ_ELTYPE(contour) == CV_32FC2;
89 if( contour->total )
94 int lpt = contour->total;
98 cvStartReadSeq( contour, &reader, 0 );
110 CV_NEXT_SEQ_ELEM( contour->elem_size, reader );
127 CV_NEXT_SEQ_ELEM( contour->elem_size, reader );
386 CvSeq* contour = 0; local
391 contour = (CvSeq*)array;
392 if( !CV_IS_SEQ_POLYGON( contour ))
    [all...]
cvcontours.cpp 131 struct _CvContourInfo *next; /* next contour with the same mark value */
132 struct _CvContourInfo *parent; /* information about parent contour */
133 CvSeq *contour; /* corresponding contour (may be 0, if rejected) */ member in struct:_CvContourInfo
135 CvPoint origin; /* origin point (where the contour was traced from) */
153 CvMemStoragePos backup_pos; /* beginning of the latest approx. contour */
154 CvMemStoragePos backup_pos2; /* ending of the latest approx. contour */
159 CvPoint offset; /* ROI offset: coordinates, added to each contour point */
161 CvPoint lnbd; /* position of the last met contour */
163 _CvContourInfo *l_cinfo; /* information about latest approx. contour */
844 CvSeq *contour = 0; local
1438 CvSeq* contour; local
1516 CvSeq *contour = 0; local
    [all...]
cvshapedescr.cpp 43 /* calculates length of a curve (e.g. contour perimeter) */
59 CvSeq* contour = 0; local
64 contour = (CvSeq*)array;
65 if( !CV_IS_SEQ_POLYLINE( contour ))
68 is_closed = CV_IS_SEQ_CLOSED( contour );
73 CV_CALL( contour = cvPointSeqFromMat(
78 if( contour->total > 1 )
80 int is_float = CV_SEQ_ELTYPE( contour ) == CV_32FC2;
82 cvStartReadSeq( contour, &reader, 0 );
84 count = cvSliceLength( slice, contour );
737 CvSeq* contour = 0; local
    [all...]
  /external/freetype/src/base/
ftoutln.c 67 FT_Int n; /* index of contour in outline */
68 FT_UInt first; /* index of first point in contour */
84 FT_Int last; /* index of last point in contour */
108 /* A contour cannot start with a cubic control point! */
269 /* close the contour with a line segment */
359 /* check point and contour counts */
724 /* Is a point in some contour? */
726 /* We treat every point of the contour as if it */
809 /* part (contour not enclosed in another contour) of the *
984 short* contour; local
    [all...]
  /external/freetype/src/autofit/
afhints.c 700 AF_Point* contour = hints->contours; local
701 AF_Point* contour_limit = contour + hints->num_contours;
706 for ( ; contour < contour_limit; contour++, end++ )
708 contour[0] = points + idx;
1149 AF_Point* contour = hints->contours; local
1150 AF_Point* contour_limit = contour + hints->num_contours;
1182 for ( ; contour < contour_limit; contour++ )
1187 point = *contour;
    [all...]
aflatin.c 299 /* segment; we first need to find in which contour the extremum */
734 AF_Point* contour = hints->contours; local
735 AF_Point* contour_limit = contour + hints->num_contours;
774 /* do each contour separately */
775 for ( ; contour < contour_limit; contour++ )
777 AF_Point point = contour[0];
    [all...]
aflatin2.c 292 /* segment; we first need to find in which contour the extremum */
686 AF_Point* contour = hints->contours; local
687 AF_Point* contour_limit = contour + hints->num_contours;
726 /* do each contour separately */
727 for ( ; contour < contour_limit; contour++ )
729 AF_Point point = contour[0];
828 /* this can happen in the case of a degenerate contour
829 * e.g. a 2-point vertical contour
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c 1048 /* compute first segment in contour */
1087 /* now, process all segments in the contour */
1284 PSH_Contour contour = glyph->contours; local
2039 PSH_Contour contour = glyph->contours; local
    [all...]
pshalgo.h 139 PSH_POINT_POSITIVE = 128, /* extremum has positive contour flow */
140 PSH_POINT_NEGATIVE = 256, /* extremum has negative contour flow */
166 PSH_Contour contour; member in struct:PSH_PointRec_
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GLES2Canvas.cpp 681 WTF::Vector<size_t>::const_iterator contour; local
683 for (contour = contours.begin(); contour != contours.end(); ++contour) {
685 for (; i < *contour; ++i) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 63 using LoopBlinnPathProcessorImplementation::Contour;
153 Contour* contour,
160 m_contour = contour;
171 Contour* contour,
176 m_contour = contour;
198 // The contour this segment belongs to.
199 Contour* contour() const { return m_contour; function in class:WebCore::LoopBlinnPathProcessorImplementation::Segment
621 Contour* contour = 0; local
    [all...]
  /external/opencv/cv/include/
cv.h 417 /* Initalizes contour retrieving process.
428 /* Retrieves next contour */
432 /* Substitutes the last retrieved contour with the new one
433 (if the substitutor is null, the last retrieved contour is removed from the tree) */
437 /* Releases contour scanner and returns pointer to the first outer contour */
709 * Contour Processing and Shape Analysis *
714 /* Approximates a single polygonal curve (contour) or
723 /* Finds high-curvature points of the contour */
724 CVAPI(CvSeq*) cvFindDominantPoints( CvSeq* contour, CvMemStorage* storage
791 CVAPI(int) cvCheckContourConvexity( const CvArr* contour ); variable
    [all...]
cvtypes.h 73 CvSeq* contour; /* optional component boundary member in struct:CvConnectedComp
74 (the contour might have child contours corresponding to the holes)*/
84 /* contour retrieval mode */
90 /* contour approximation method */
115 /* Contour tree header */
124 /* Finds a sequence of convexity defects of given contour */
127 CvPoint* start; /* point of the contour where the defect begins */
128 CvPoint* end; /* point of the contour where the defect ends */
  /external/opencv/cvaux/include/
cvaux.h 752 * Contour Morphing *
1018 CvContour* contour; member in struct:CvLCMNode
    [all...]
  /external/freetype/src/truetype/
ttinterp.c 5784 FT_Short contour, bounds; local
6826 FT_Short contour; \/* current contour *\/ local
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 

Completed in 921 milliseconds