Searched refs:irho (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/modules/cudaimgproc/src/cuda/ |
D | hough_lines.cu | 61 …al(const unsigned int* list, const int count, PtrStepi accum, const float irho, const float theta,… in linesAccumGlobal() argument 69 sinVal *= irho; in linesAccumGlobal() 70 cosVal *= irho; in linesAccumGlobal() 89 …ed(const unsigned int* list, const int count, PtrStepi accum, const float irho, const float theta,… in linesAccumShared() argument 104 sinVal *= irho; in linesAccumShared() 105 cosVal *= irho; in linesAccumShared()
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | hough_lines.cl | 61 int total_points, float irho, float theta, int numrho, int numangle) 68 sinVal *= irho; 69 cosVal *= irho; 93 int total_points, float irho, float theta, int numrho, int numangle) 102 sinVal *= irho; 103 cosVal *= irho;
|
/external/opencv/cv/src/ |
D | cvhough.cpp | 104 float irho = 1 / rho; in CV_IMPLEMENT_QSORT_EX() local 125 tabSin[n] = (float)(sin(ang) * irho); in CV_IMPLEMENT_QSORT_EX() 126 tabCos[n] = (float)(cos(ang) * irho); in CV_IMPLEMENT_QSORT_EX() 217 float irho; in IMPLEMENT_LIST() local 247 irho = 1 / rho; in IMPLEMENT_LIST() 254 rn = cvFloor( sqrt( (double)w * w + (double)h * h ) * irho ); in IMPLEMENT_LIST() 307 r0 = r * irho; in IMPLEMENT_LIST() 504 float irho = 1 / rho; in icvHoughLinesProbabalistic() local 526 trigtab->data.fl[n*2] = (float)(cos(ang) * irho); in icvHoughLinesProbabalistic() 527 trigtab->data.fl[n*2+1] = (float)(sin(ang) * irho); in icvHoughLinesProbabalistic()
|
/external/opencv3/modules/imgproc/src/ |
D | hough.cpp | 84 float irho = 1 / rho; in HoughLinesStandard() local 137 tabSin[n] = (float)(sin((double)ang) * irho); in HoughLinesStandard() 138 tabCos[n] = (float)(cos((double)ang) * irho); in HoughLinesStandard() 234 float irho = 1 / rho; in HoughLinesSDiv() local 241 int rn = cvFloor( std::sqrt( (double)w * w + (double)h * h ) * irho ); in HoughLinesSDiv() 290 r0 = r * irho; in HoughLinesSDiv() 421 float irho = 1 / rho; in HoughLinesProbabilistic() local 467 trigtab[n*2] = (float)(cos((double)n*theta) * irho); in HoughLinesProbabilistic() 468 trigtab[n*2+1] = (float)(sin((double)n*theta) * irho); in HoughLinesProbabilistic() 696 float irho = (float) (1 / rho); in ocl_fillAccum() local [all …]
|