mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 15:53:03 +04:00
Add semicolons after CV_INSTRUMENT macros
This commit is contained in:
@@ -895,7 +895,7 @@ void HoughLines( InputArray _image, OutputArray lines,
|
||||
double rho, double theta, int threshold,
|
||||
double srn, double stn, double min_theta, double max_theta )
|
||||
{
|
||||
CV_INSTRUMENT_REGION()
|
||||
CV_INSTRUMENT_REGION();
|
||||
|
||||
int type = CV_32FC2;
|
||||
if (lines.fixedType())
|
||||
@@ -918,7 +918,7 @@ void HoughLinesP(InputArray _image, OutputArray _lines,
|
||||
double rho, double theta, int threshold,
|
||||
double minLineLength, double maxGap )
|
||||
{
|
||||
CV_INSTRUMENT_REGION()
|
||||
CV_INSTRUMENT_REGION();
|
||||
|
||||
CV_OCL_RUN(_image.isUMat() && _lines.isUMat(),
|
||||
ocl_HoughLinesP(_image, _lines, rho, theta, threshold, minLineLength, maxGap));
|
||||
@@ -1724,7 +1724,7 @@ static void HoughCircles( InputArray _image, OutputArray _circles,
|
||||
int minRadius, int maxRadius,
|
||||
int maxCircles, double param3 )
|
||||
{
|
||||
CV_INSTRUMENT_REGION()
|
||||
CV_INSTRUMENT_REGION();
|
||||
|
||||
int type = CV_32FC3;
|
||||
if( _circles.fixedType() )
|
||||
|
||||
Reference in New Issue
Block a user