Lines Matching refs:numangle

96     int numangle = cvRound((max_theta - min_theta) / theta);  in HoughLinesStandard()  local
107 int ipp_linesMax = std::min(linesMax, nz*numangle/threshold); in HoughLinesStandard()
125 AutoBuffer<int> _accum((numangle+2) * (numrho+2)); in HoughLinesStandard()
127 AutoBuffer<float> _tabSin(numangle); in HoughLinesStandard()
128 AutoBuffer<float> _tabCos(numangle); in HoughLinesStandard()
132 memset( accum, 0, sizeof(accum[0]) * (numangle+2) * (numrho+2) ); in HoughLinesStandard()
135 for(int n = 0; n < numangle; ang += theta, n++ ) in HoughLinesStandard()
146 for(int n = 0; n < numangle; n++ ) in HoughLinesStandard()
156 for(int n = 0; n < numangle; n++ ) in HoughLinesStandard()
429 int numangle = cvRound(CV_PI / theta); in HoughLinesProbabilistic() local
439 int ipp_linesMax = std::min(linesMax, numangle*numrho); in HoughLinesProbabilistic()
461 Mat accum = Mat::zeros( numangle, numrho, CV_32SC1 ); in HoughLinesProbabilistic()
463 std::vector<float> trigtab(numangle*2); in HoughLinesProbabilistic()
465 for( int n = 0; n < numangle; n++ ) in HoughLinesProbabilistic()
515 for( int n = 0; n < numangle; n++, adata += numrho ) in HoughLinesProbabilistic()
636 for( int n = 0; n < numangle; n++, adata += numrho ) in HoughLinesProbabilistic()
689 …intsList, OutputArray _accum, int total_points, double rho, double theta, int numrho, int numangle) in ocl_fillAccum() argument
692 _accum.create(numangle + 2, numrho + 2, CV_32SC1); in ocl_fillAccum()
711 globalThreads[0] = workgroup_size; globalThreads[1] = numangle; in ocl_fillAccum()
713 total_points, irho, (float) theta, numrho, numangle); in ocl_fillAccum()
723 globalThreads[0] = workgroup_size; globalThreads[1] = numangle+2; in ocl_fillAccum()
725 total_points, irho, (float) theta, numrho, numangle); in ocl_fillAccum()
746 int numangle = cvRound((max_theta - min_theta) / theta); in ocl_HoughLines() local
763 if (!ocl_fillAccum(pointsList, accum, total_points, rho, theta, numrho, numangle)) in ocl_HoughLines()
772 …int linesMax = threshold > 0 ? min(total_points*numangle/threshold, OCL_MAX_LINES) : OCL_MAX_LINES; in ocl_HoughLines()
778 size_t globalThreads[2] = { (numrho + pixPerWI - 1)/pixPerWI, numangle }; in ocl_HoughLines()
800 int numangle = cvRound(CV_PI / theta); in ocl_HoughLinesP() local
817 if (!ocl_fillAccum(pointsList, accum, total_points, rho, theta, numrho, numangle)) in ocl_HoughLinesP()
825 …int linesMax = threshold > 0 ? min(total_points*numangle/threshold, OCL_MAX_LINES) : OCL_MAX_LINES; in ocl_HoughLinesP()
832 size_t globalThreads[2] = { numrho, numangle }; in ocl_HoughLinesP()