Lines Matching refs:rho
64 float rho; member
85 icvHoughLinesStandard( const CvMat* img, float rho, float theta, in CV_IMPLEMENT_QSORT_EX()
104 float irho = 1 / rho; in CV_IMPLEMENT_QSORT_EX()
115 numrho = cvRound(((width + height) * 2 + 1) / rho); in CV_IMPLEMENT_QSORT_EX()
165 line.rho = (r - (numrho - 1)*0.5f) * rho; in CV_IMPLEMENT_QSORT_EX()
192 float rho, float theta, int threshold, in IMPLEMENT_LIST()
238 CV_ASSERT( linesMax > 0 && rho > 0 && theta > 0 ); in IMPLEMENT_LIST()
247 irho = 1 / rho; in IMPLEMENT_LIST()
249 srho = rho / srn; in IMPLEMENT_LIST()
259 vi.rho = -1; in IMPLEMENT_LIST()
312 theta_it = rho / r; in IMPLEMENT_LIST()
348 icvHoughLinesStandard( img, rho, theta, threshold, lines, linesMax ); in IMPLEMENT_LIST()
403 vi.rho = index / stn * srho + ri * rho; in IMPLEMENT_LIST()
435 if( h_get__index( pos )->rho < 0 ) in IMPLEMENT_LIST()
446 if( pindex->rho < 0 ) in IMPLEMENT_LIST()
453 line.rho = pindex->rho; in IMPLEMENT_LIST()
484 float rho, float theta, int threshold, in icvHoughLinesProbabalistic() argument
504 float irho = 1 / rho; in icvHoughLinesProbabalistic()
515 numrho = cvRound(((width + height) * 2 + 1) / rho); in icvHoughLinesProbabalistic()
741 double rho, double theta, int threshold, in cvHoughLines2() argument
767 if( rho <= 0 || theta <= 0 || threshold <= 0 ) in cvHoughLines2()
813 CV_CALL( icvHoughLinesStandard( img, (float)rho, in cvHoughLines2()
817 CV_CALL( icvHoughLinesSDiv( img, (float)rho, (float)theta, in cvHoughLines2()
821 CV_CALL( icvHoughLinesProbabalistic( img, (float)rho, (float)theta, in cvHoughLines2()