Package org.opencv.features2d
Class BRISK
- java.lang.Object
-
- org.opencv.core.Algorithm
-
- org.opencv.features2d.Feature2D
-
- org.opencv.features2d.BRISK
-
public class BRISK extends Feature2D
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
BRISK(long addr)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BRISK
__fromPtr__(long addr)
static BRISK
create()
static BRISK
create(int thresh)
static BRISK
create(int thresh, int octaves)
static BRISK
create(int thresh, int octaves, float patternScale)
static BRISK
create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList)
static BRISK
create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax)
static BRISK
create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
static BRISK
create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)
static BRISK
create(MatOfFloat radiusList, MatOfInt numberList)
static BRISK
create(MatOfFloat radiusList, MatOfInt numberList, float dMax)
static BRISK
create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
static BRISK
create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)
protected void
finalize()
java.lang.String
getDefaultName()
int
getOctaves()
int
getThreshold()
void
setOctaves(int octaves)
void
setThreshold(int threshold)
-
Methods inherited from class org.opencv.features2d.Feature2D
compute, compute, defaultNorm, descriptorSize, descriptorType, detect, detect, detect, detect, detectAndCompute, detectAndCompute, empty, read, write
-
Methods inherited from class org.opencv.core.Algorithm
clear, getNativeObjAddr, save
-
-
-
-
Method Detail
-
__fromPtr__
public static BRISK __fromPtr__(long addr)
-
create
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)
-
create
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
-
create
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax)
-
create
public static BRISK create(int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList)
-
create
public static BRISK create(int thresh, int octaves, float patternScale)
-
create
public static BRISK create(int thresh, int octaves)
-
create
public static BRISK create(int thresh)
-
create
public static BRISK create()
-
create
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange)
-
create
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin)
-
create
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList, float dMax)
-
create
public static BRISK create(MatOfFloat radiusList, MatOfInt numberList)
-
getDefaultName
public java.lang.String getDefaultName()
- Overrides:
getDefaultName
in classFeature2D
-
getOctaves
public int getOctaves()
-
getThreshold
public int getThreshold()
-
setOctaves
public void setOctaves(int octaves)
-
setThreshold
public void setThreshold(int threshold)
-
-