Skip to content

Commit

Permalink
Fix build when deprecated functions are disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Jun 19, 2024
1 parent 657aa7b commit d51d614
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tutorial/imgproc/hough-transform/tutorial-circle-hough.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ bool run_detection(const vpImage<unsigned char> &I_src, vpCircleHoughTransform &
drawingHelpers::display(edgeMap, "Edge map", true);
}
return drawingHelpers::display(I_disp, "Detection results", blockingMode);
}
}

int main(int argc, char **argv)
{
Expand Down Expand Up @@ -463,10 +463,10 @@ int main(int argc, char **argv)
<< std::endl;
return EXIT_SUCCESS;
}
}
}

//! [Algo params]
vpCircleHoughTransform::vpCircleHoughTransformParameters
//! [Algo params]
vpCircleHoughTransform::vpCircleHoughTransformParams
algoParams(opt_gaussianKernelSize
, opt_gaussianSigma
, opt_sobelKernelSize
Expand Down Expand Up @@ -540,4 +540,4 @@ int main(int argc, char **argv)
}

return EXIT_SUCCESS;
}
}

0 comments on commit d51d614

Please sign in to comment.