HomeSort by relevance Sort by last modified time
    Searched refs:linesCount (Results 1 - 4 of 4) sorted by null

  /external/opencv3/modules/cudaimgproc/src/
hough_segments.cpp 168 int linesCount = houghLinesProbabilistic_gpu(src, accum_, result_.ptr<int4>(), maxLines_, rho_, theta_, maxLineGap_, minLineLength_);
170 if (linesCount == 0)
176 result_.cols = linesCount;
hough_lines.cpp 164 int linesCount = linesGetResult_gpu(accum_, result_.ptr<float2>(0), result_.ptr<int>(1), maxLines_, rho_, theta_, threshold_, doSort_);
166 if (linesCount == 0)
172 result_.cols = linesCount;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
SingleStepWithLocationTest.java 86 int linesCount = lineTableReply.getNextValueAsInt();
89 for (int i = 0; i < linesCount; ++i) {
  /external/opencv3/modules/imgproc/src/
hough.cpp 108 int linesCount = 0;
112 if (ok >= 0) ok = ippiHoughLine_Region_8u32f_C1R(image, step, srcSize, (IppPointPolar*) &lines[0], dstRoi, ipp_linesMax, &linesCount, delta, threshold, buffer);
116 lines.resize(linesCount);
440 int linesCount = 0;
446 if (ok >= 0) ok = ippiHoughProbLine_8u32f_C1R(image.data, image.step, srcSize, threshold, lineLength, lineGap, (IppiPoint*) &lines[0], ipp_linesMax, &linesCount, buffer, pSpec);
452 lines.resize(linesCount);
    [all...]

Completed in 2663 milliseconds