Package org.opencv.imgproc
Class GeneralizedHough
- java.lang.Object
- 
- org.opencv.core.Algorithm
- 
- org.opencv.imgproc.GeneralizedHough
 
 
- 
- Direct Known Subclasses:
- GeneralizedHoughBallard,- GeneralizedHoughGuil
 
 public class GeneralizedHough extends Algorithm finds arbitrary template in the grayscale image using Generalized Hough Transform
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedGeneralizedHough(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GeneralizedHough__fromPtr__(long addr)voiddetect(Mat image, Mat positions)voiddetect(Mat image, Mat positions, Mat votes)voiddetect(Mat edges, Mat dx, Mat dy, Mat positions)voiddetect(Mat edges, Mat dx, Mat dy, Mat positions, Mat votes)protected voidfinalize()intgetCannyHighThresh()intgetCannyLowThresh()doublegetDp()intgetMaxBufferSize()doublegetMinDist()voidsetCannyHighThresh(int cannyHighThresh)voidsetCannyLowThresh(int cannyLowThresh)voidsetDp(double dp)voidsetMaxBufferSize(int maxBufferSize)voidsetMinDist(double minDist)voidsetTemplate(Mat templ)voidsetTemplate(Mat edges, Mat dx, Mat dy)voidsetTemplate(Mat edges, Mat dx, Mat dy, Point templCenter)voidsetTemplate(Mat templ, Point templCenter)- 
Methods inherited from class org.opencv.core.Algorithmclear, empty, getDefaultName, getNativeObjAddr, save
 
- 
 
- 
- 
- 
Method Detail- 
__fromPtr__public static GeneralizedHough __fromPtr__(long addr) 
 - 
getDppublic double getDp() 
 - 
getMinDistpublic double getMinDist() 
 - 
getCannyHighThreshpublic int getCannyHighThresh() 
 - 
getCannyLowThreshpublic int getCannyLowThresh() 
 - 
getMaxBufferSizepublic int getMaxBufferSize() 
 - 
setCannyHighThreshpublic void setCannyHighThresh(int cannyHighThresh) 
 - 
setCannyLowThreshpublic void setCannyLowThresh(int cannyLowThresh) 
 - 
setDppublic void setDp(double dp) 
 - 
setMaxBufferSizepublic void setMaxBufferSize(int maxBufferSize) 
 - 
setMinDistpublic void setMinDist(double minDist) 
 - 
setTemplatepublic void setTemplate(Mat templ) 
 
- 
 
-