Package org.opencv.xfeatures2d
Class VGG
- java.lang.Object
-
- org.opencv.core.Algorithm
-
- org.opencv.features2d.Feature2D
-
- org.opencv.xfeatures2d.VGG
-
public class VGG extends Feature2D
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
VGG(long addr)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VGG
__fromPtr__(long addr)
static VGG
create()
static VGG
create(int desc)
static VGG
create(int desc, float isigma)
static VGG
create(int desc, float isigma, boolean img_normalize)
static VGG
create(int desc, float isigma, boolean img_normalize, boolean use_scale_orientation)
static VGG
create(int desc, float isigma, boolean img_normalize, boolean use_scale_orientation, float scale_factor)
static VGG
create(int desc, float isigma, boolean img_normalize, boolean use_scale_orientation, float scale_factor, boolean dsc_normalize)
protected void
finalize()
float
getScaleFactor()
float
getSigma()
boolean
getUseNormalizeDescriptor()
boolean
getUseNormalizeImage()
boolean
getUseScaleOrientation()
void
setScaleFactor(float scale_factor)
void
setSigma(float isigma)
void
setUseNormalizeDescriptor(boolean dsc_normalize)
void
setUseNormalizeImage(boolean img_normalize)
void
setUseScaleOrientation(boolean use_scale_orientation)
-
Methods inherited from class org.opencv.features2d.Feature2D
compute, compute, defaultNorm, descriptorSize, descriptorType, detect, detect, detect, detect, detectAndCompute, detectAndCompute, empty, getDefaultName, read, write
-
Methods inherited from class org.opencv.core.Algorithm
clear, getNativeObjAddr, save
-
-
-
-
Method Detail
-
__fromPtr__
public static VGG __fromPtr__(long addr)
-
create
public static VGG create(int desc, float isigma, boolean img_normalize, boolean use_scale_orientation, float scale_factor, boolean dsc_normalize)
-
create
public static VGG create(int desc, float isigma, boolean img_normalize, boolean use_scale_orientation, float scale_factor)
-
create
public static VGG create(int desc, float isigma, boolean img_normalize, boolean use_scale_orientation)
-
create
public static VGG create(int desc, float isigma, boolean img_normalize)
-
create
public static VGG create(int desc, float isigma)
-
create
public static VGG create(int desc)
-
create
public static VGG create()
-
getUseNormalizeDescriptor
public boolean getUseNormalizeDescriptor()
-
getUseNormalizeImage
public boolean getUseNormalizeImage()
-
getUseScaleOrientation
public boolean getUseScaleOrientation()
-
getScaleFactor
public float getScaleFactor()
-
getSigma
public float getSigma()
-
setScaleFactor
public void setScaleFactor(float scale_factor)
-
setSigma
public void setSigma(float isigma)
-
setUseNormalizeDescriptor
public void setUseNormalizeDescriptor(boolean dsc_normalize)
-
setUseNormalizeImage
public void setUseNormalizeImage(boolean img_normalize)
-
setUseScaleOrientation
public void setUseScaleOrientation(boolean use_scale_orientation)
-
-