Home
last modified time | relevance | path

Searched refs:contourIdx (Results 1 – 7 of 7) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/modules/features2d/src/
H A Dblobdetector.cpp208 for (size_t contourIdx = 0; contourIdx < contours.size(); contourIdx++) in findBlobs() local
212 Moments moms = moments(contours[contourIdx]); in findBlobs()
223 double perimeter = arcLength(contours[contourIdx], true); in findBlobs()
259 convexHull(contours[contourIdx], hull); in findBlobs()
282 for (size_t pointIdx = 0; pointIdx < contours[contourIdx].size(); pointIdx++) in findBlobs()
284 Point2d pt = contours[contourIdx][pointIdx]; in findBlobs()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/libs/kimath/src/geometry/
H A Dshape_poly_set.cpp125 unsigned int contourIdx = 0; in GetRelativeIndices() local
134 for( contourIdx = 0; contourIdx < currentPolygon.size(); contourIdx++ ) in GetRelativeIndices()
136 const SHAPE_LINE_CHAIN& currentContour = currentPolygon[contourIdx]; in GetRelativeIndices()
145 aRelativeIndices->m_contour = contourIdx; in GetRelativeIndices()
180 for( unsigned int contourIdx = 0; contourIdx < currentPolygon.size(); contourIdx++ ) in GetGlobalIndex() local
181 aGlobalIdx += currentPolygon[contourIdx].PointCount(); in GetGlobalIndex()
186 for( unsigned int contourIdx = 0; contourIdx < selectedContour; contourIdx++ ) in GetGlobalIndex() local
187 aGlobalIdx += currentPolygon[contourIdx].PointCount(); in GetGlobalIndex()
/dports/graphics/opencv/opencv-4.5.3/doc/js_tutorials/js_imgproc/js_contours/js_contours_begin/
H A Djs_contours_begin.markdown38 **cv.drawContours (image, contours, contourIdx, color, thickness = 1, lineType = cv.LINE_8, hierarc…
41 @param contourIdx parameter indicating a contour to draw. If it is negative, all the contours ar…
/dports/graphics/opencv/opencv-4.5.3/samples/swift/ios/ColorBlobDetection/ColorBlobDetection/
H A DViewController.swift29 …Imgproc.drawContours(image: image, contours: contours as! [[Point]], contourIdx: -1, color: CONTOU… in processImage()
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Ddrawing.cpp2465 int contourIdx, const Scalar& color, int thickness, in drawContours() argument
2488 if( contourIdx >= 0 ) in drawContours()
2490 CV_Assert( 0 <= contourIdx && contourIdx < (int)last ); in drawContours()
2491 first = contourIdx; in drawContours()
2492 last = contourIdx + 1; in drawContours()
2541 cvDrawContours( &_cimage, &seq[first], cvScalar(color), cvScalar(color), contourIdx >= 0 ? in drawContours()
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/include/opencv2/
H A Dimgproc.hpp4638 int contourIdx, const Scalar& color,
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/misc/objc/test/
H A DImgprocTest.swift547 … Imgproc.drawContours(image: gray0clone, contours: contours, contourIdx: -1, color: Scalar(0)) in testDrawContoursMatListOfMatIntScalar()
558 …Imgproc.drawContours(image: gray0clone, contours: contours, contourIdx: -1, color: Scalar(0), thic… in testDrawContoursMatListOfMatIntScalarInt()