Home
last modified time | relevance | path

Searched refs:linesCount (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/cudaimgproc/src/
Dhough_segments.cpp168 …int linesCount = houghLinesProbabilistic_gpu(src, accum_, result_.ptr<int4>(), maxLines_, rho_, th… in detect() local
170 if (linesCount == 0) in detect()
176 result_.cols = linesCount; in detect()
Dhough_lines.cpp164 …int linesCount = linesGetResult_gpu(accum_, result_.ptr<float2>(0), result_.ptr<int>(1), maxLines_… in detect() local
166 if (linesCount == 0) in detect()
172 result_.cols = linesCount; in detect()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DSingleStepWithLocationTest.java86 int linesCount = lineTableReply.getNextValueAsInt(); in testSingleStepToLocation() local
89 for (int i = 0; i < linesCount; ++i) { in testSingleStepToLocation()
/external/opencv3/modules/imgproc/src/
Dhough.cpp108 int linesCount = 0; in HoughLinesStandard() local
112 …age, step, srcSize, (IppPointPolar*) &lines[0], dstRoi, ipp_linesMax, &linesCount, delta, threshol… in HoughLinesStandard()
116 lines.resize(linesCount); in HoughLinesStandard()
440 int linesCount = 0; in HoughLinesProbabilistic() local
446 … threshold, lineLength, lineGap, (IppiPoint*) &lines[0], ipp_linesMax, &linesCount, buffer, pSpec); in HoughLinesProbabilistic()
452 lines.resize(linesCount); in HoughLinesProbabilistic()