Package org.opencv.features2d
Class ORB
- java.lang.Object
-
- org.opencv.core.Algorithm
-
- org.opencv.features2d.Feature2D
-
- org.opencv.features2d.ORB
-
public class ORB extends Feature2D
-
-
Field Summary
Fields Modifier and Type Field Description static intFAST_SCOREstatic intHARRIS_SCOREstatic intkBytes
-
Constructor Summary
Constructors Modifier Constructor Description protectedORB(long addr)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ORB__fromPtr__(long addr)static ORBcreate()static ORBcreate(int nfeatures)static ORBcreate(int nfeatures, float scaleFactor)static ORBcreate(int nfeatures, float scaleFactor, int nlevels)static ORBcreate(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold)static ORBcreate(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold, int firstLevel)static ORBcreate(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold, int firstLevel, int WTA_K)static ORBcreate(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold, int firstLevel, int WTA_K, int scoreType)static ORBcreate(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold, int firstLevel, int WTA_K, int scoreType, int patchSize)static ORBcreate(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold, int firstLevel, int WTA_K, int scoreType, int patchSize, int fastThreshold)protected voidfinalize()StringgetDefaultName()intgetEdgeThreshold()intgetFastThreshold()intgetFirstLevel()intgetMaxFeatures()intgetNLevels()intgetPatchSize()doublegetScaleFactor()intgetScoreType()intgetWTA_K()voidsetEdgeThreshold(int edgeThreshold)voidsetFastThreshold(int fastThreshold)voidsetFirstLevel(int firstLevel)voidsetMaxFeatures(int maxFeatures)voidsetNLevels(int nlevels)voidsetPatchSize(int patchSize)voidsetScaleFactor(double scaleFactor)voidsetScoreType(int scoreType)voidsetWTA_K(int wta_k)-
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
-
-
-
-
Field Detail
-
kBytes
public static final int kBytes
- See Also:
- Constant Field Values
-
HARRIS_SCORE
public static final int HARRIS_SCORE
- See Also:
- Constant Field Values
-
FAST_SCORE
public static final int FAST_SCORE
- See Also:
- Constant Field Values
-
-
Method Detail
-
__fromPtr__
public static ORB __fromPtr__(long addr)
-
create
public static ORB create(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold, int firstLevel, int WTA_K, int scoreType, int patchSize, int fastThreshold)
-
create
public static ORB create(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold, int firstLevel, int WTA_K, int scoreType, int patchSize)
-
create
public static ORB create(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold, int firstLevel, int WTA_K, int scoreType)
-
create
public static ORB create(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold, int firstLevel, int WTA_K)
-
create
public static ORB create(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold, int firstLevel)
-
create
public static ORB create(int nfeatures, float scaleFactor, int nlevels, int edgeThreshold)
-
create
public static ORB create(int nfeatures, float scaleFactor, int nlevels)
-
create
public static ORB create(int nfeatures, float scaleFactor)
-
create
public static ORB create(int nfeatures)
-
create
public static ORB create()
-
getDefaultName
public String getDefaultName()
- Overrides:
getDefaultNamein classFeature2D
-
getScaleFactor
public double getScaleFactor()
-
getEdgeThreshold
public int getEdgeThreshold()
-
getFastThreshold
public int getFastThreshold()
-
getFirstLevel
public int getFirstLevel()
-
getMaxFeatures
public int getMaxFeatures()
-
getNLevels
public int getNLevels()
-
getPatchSize
public int getPatchSize()
-
getScoreType
public int getScoreType()
-
getWTA_K
public int getWTA_K()
-
setEdgeThreshold
public void setEdgeThreshold(int edgeThreshold)
-
setFastThreshold
public void setFastThreshold(int fastThreshold)
-
setFirstLevel
public void setFirstLevel(int firstLevel)
-
setMaxFeatures
public void setMaxFeatures(int maxFeatures)
-
setNLevels
public void setNLevels(int nlevels)
-
setPatchSize
public void setPatchSize(int patchSize)
-
setScaleFactor
public void setScaleFactor(double scaleFactor)
-
setScoreType
public void setScoreType(int scoreType)
-
setWTA_K
public void setWTA_K(int wta_k)
-
-