Package org.opencv.calib3d
Class StereoBM
- java.lang.Object
-
- org.opencv.core.Algorithm
-
- org.opencv.calib3d.StereoMatcher
-
- org.opencv.calib3d.StereoBM
-
public class StereoBM extends StereoMatcher
-
-
Field Summary
Fields Modifier and Type Field Description static int
PREFILTER_NORMALIZED_RESPONSE
static int
PREFILTER_XSOBEL
-
Fields inherited from class org.opencv.calib3d.StereoMatcher
DISP_SCALE, DISP_SHIFT
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
StereoBM(long addr)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StereoBM
__fromPtr__(long addr)
static StereoBM
create()
static StereoBM
create(int numDisparities)
static StereoBM
create(int numDisparities, int blockSize)
protected void
finalize()
int
getPreFilterCap()
int
getPreFilterSize()
int
getPreFilterType()
Rect
getROI1()
Rect
getROI2()
int
getSmallerBlockSize()
int
getTextureThreshold()
int
getUniquenessRatio()
void
setPreFilterCap(int preFilterCap)
void
setPreFilterSize(int preFilterSize)
void
setPreFilterType(int preFilterType)
void
setROI1(Rect roi1)
void
setROI2(Rect roi2)
void
setSmallerBlockSize(int blockSize)
void
setTextureThreshold(int textureThreshold)
void
setUniquenessRatio(int uniquenessRatio)
-
Methods inherited from class org.opencv.calib3d.StereoMatcher
compute, getBlockSize, getDisp12MaxDiff, getMinDisparity, getNumDisparities, getSpeckleRange, getSpeckleWindowSize, setBlockSize, setDisp12MaxDiff, setMinDisparity, setNumDisparities, setSpeckleRange, setSpeckleWindowSize
-
Methods inherited from class org.opencv.core.Algorithm
clear, empty, getDefaultName, getNativeObjAddr, save
-
-
-
-
Field Detail
-
PREFILTER_NORMALIZED_RESPONSE
public static final int PREFILTER_NORMALIZED_RESPONSE
- See Also:
- Constant Field Values
-
PREFILTER_XSOBEL
public static final int PREFILTER_XSOBEL
- See Also:
- Constant Field Values
-
-
Method Detail
-
__fromPtr__
public static StereoBM __fromPtr__(long addr)
-
create
public static StereoBM create(int numDisparities, int blockSize)
-
create
public static StereoBM create(int numDisparities)
-
create
public static StereoBM create()
-
getROI1
public Rect getROI1()
-
getROI2
public Rect getROI2()
-
getPreFilterCap
public int getPreFilterCap()
-
getPreFilterSize
public int getPreFilterSize()
-
getPreFilterType
public int getPreFilterType()
-
getSmallerBlockSize
public int getSmallerBlockSize()
-
getTextureThreshold
public int getTextureThreshold()
-
getUniquenessRatio
public int getUniquenessRatio()
-
setPreFilterCap
public void setPreFilterCap(int preFilterCap)
-
setPreFilterSize
public void setPreFilterSize(int preFilterSize)
-
setPreFilterType
public void setPreFilterType(int preFilterType)
-
setROI1
public void setROI1(Rect roi1)
-
setROI2
public void setROI2(Rect roi2)
-
setSmallerBlockSize
public void setSmallerBlockSize(int blockSize)
-
setTextureThreshold
public void setTextureThreshold(int textureThreshold)
-
setUniquenessRatio
public void setUniquenessRatio(int uniquenessRatio)
-
finalize
protected void finalize() throws java.lang.Throwable
- Overrides:
finalize
in classStereoMatcher
- Throws:
java.lang.Throwable
-
-