@Namespace(value="cv") public static class opencv_features2d.BRISK extends opencv_features2d.Feature2D
/** \brief Class implementing the BRISK keypoint detector and descriptor extractor, described in \cite LCS11 .
| Constructor and Description |
|---|
BRISK()
Default native constructor.
|
BRISK(long size)
Native array allocator.
|
BRISK(org.bytedeco.javacpp.Pointer p)
Pointer cast constructor.
|
| Modifier and Type | Method and Description |
|---|---|
static opencv_features2d.BRISK |
create() |
static opencv_features2d.BRISK |
create(float[] radiusList,
int[] numberList) |
static opencv_features2d.BRISK |
create(float[] radiusList,
int[] numberList,
float dMax,
float dMin,
int[] indexChange) |
static opencv_features2d.BRISK |
create(FloatBuffer radiusList,
IntBuffer numberList) |
static opencv_features2d.BRISK |
create(FloatBuffer radiusList,
IntBuffer numberList,
float dMax,
float dMin,
IntBuffer indexChange) |
static opencv_features2d.BRISK |
create(org.bytedeco.javacpp.FloatPointer radiusList,
org.bytedeco.javacpp.IntPointer numberList) |
static opencv_features2d.BRISK |
create(org.bytedeco.javacpp.FloatPointer radiusList,
org.bytedeco.javacpp.IntPointer numberList,
float dMax,
float dMin,
org.bytedeco.javacpp.IntPointer indexChange)
\brief The BRISK constructor for a custom pattern
|
static opencv_features2d.BRISK |
create(int thresh,
int octaves,
float patternScale)
\brief The BRISK constructor
|
static opencv_features2d.BRISK |
create(int thresh,
int octaves,
float[] radiusList,
int[] numberList) |
static opencv_features2d.BRISK |
create(int thresh,
int octaves,
float[] radiusList,
int[] numberList,
float dMax,
float dMin,
int[] indexChange) |
static opencv_features2d.BRISK |
create(int thresh,
int octaves,
FloatBuffer radiusList,
IntBuffer numberList) |
static opencv_features2d.BRISK |
create(int thresh,
int octaves,
FloatBuffer radiusList,
IntBuffer numberList,
float dMax,
float dMin,
IntBuffer indexChange) |
static opencv_features2d.BRISK |
create(int thresh,
int octaves,
org.bytedeco.javacpp.FloatPointer radiusList,
org.bytedeco.javacpp.IntPointer numberList) |
static opencv_features2d.BRISK |
create(int thresh,
int octaves,
org.bytedeco.javacpp.FloatPointer radiusList,
org.bytedeco.javacpp.IntPointer numberList,
float dMax,
float dMin,
org.bytedeco.javacpp.IntPointer indexChange)
\brief The BRISK constructor for a custom pattern, detection threshold and octaves
|
org.bytedeco.javacpp.BytePointer |
getDefaultName()
Returns the algorithm string identifier.
|
opencv_features2d.BRISK |
position(long position) |
compute, compute, compute, compute, compute, compute, defaultNorm, descriptorSize, descriptorType, detect, detect, detect, detect, detect, detect, detect, detect, detect, detect, detect, detect, detectAndCompute, detectAndCompute, detectAndCompute, detectAndCompute, detectAndCompute, detectAndCompute, empty, read, read, read, write, write, write, write, writeclear, save, saveaddress, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, hashCode, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetof, parseBytes, physicalBytes, position, put, realloc, setNull, sizeof, toString, totalBytes, totalPhysicalBytes, withDeallocator, zeropublic BRISK()
public BRISK(long size)
Pointer.position(long).public BRISK(org.bytedeco.javacpp.Pointer p)
Pointer.Pointer(Pointer).public opencv_features2d.BRISK position(long position)
position in class opencv_features2d.Feature2D@opencv_core.Ptr public static opencv_features2d.BRISK create(int thresh, int octaves, float patternScale)
thresh - AGAST detection threshold score.octaves - detection octaves. Use 0 to do single scale.patternScale - apply this scale to the pattern used for sampling the neighbourhood of a
keypoint.@opencv_core.Ptr public static opencv_features2d.BRISK create()
@opencv_core.Ptr public static opencv_features2d.BRISK create(@StdVector org.bytedeco.javacpp.FloatPointer radiusList, @StdVector org.bytedeco.javacpp.IntPointer numberList, float dMax, float dMin, @StdVector org.bytedeco.javacpp.IntPointer indexChange)
radiusList - defines the radii (in pixels) where the samples around a keypoint are taken (for
keypoint scale 1).numberList - defines the number of sampling points on the sampling circle. Must be the same
size as radiusList..dMax - threshold for the short pairings used for descriptor formation (in pixels for keypoint
scale 1).dMin - threshold for the long pairings used for orientation determination (in pixels for
keypoint scale 1).indexChange - index remapping of the bits.@opencv_core.Ptr public static opencv_features2d.BRISK create(@StdVector org.bytedeco.javacpp.FloatPointer radiusList, @StdVector org.bytedeco.javacpp.IntPointer numberList)
@opencv_core.Ptr public static opencv_features2d.BRISK create(@StdVector FloatBuffer radiusList, @StdVector IntBuffer numberList, float dMax, float dMin, @StdVector IntBuffer indexChange)
@opencv_core.Ptr public static opencv_features2d.BRISK create(@StdVector FloatBuffer radiusList, @StdVector IntBuffer numberList)
@opencv_core.Ptr public static opencv_features2d.BRISK create(@StdVector float[] radiusList, @StdVector int[] numberList, float dMax, float dMin, @StdVector int[] indexChange)
@opencv_core.Ptr public static opencv_features2d.BRISK create(@StdVector float[] radiusList, @StdVector int[] numberList)
@opencv_core.Ptr public static opencv_features2d.BRISK create(int thresh, int octaves, @StdVector org.bytedeco.javacpp.FloatPointer radiusList, @StdVector org.bytedeco.javacpp.IntPointer numberList, float dMax, float dMin, @StdVector org.bytedeco.javacpp.IntPointer indexChange)
thresh - AGAST detection threshold score.octaves - detection octaves. Use 0 to do single scale.radiusList - defines the radii (in pixels) where the samples around a keypoint are taken (for
keypoint scale 1).numberList - defines the number of sampling points on the sampling circle. Must be the same
size as radiusList..dMax - threshold for the short pairings used for descriptor formation (in pixels for keypoint
scale 1).dMin - threshold for the long pairings used for orientation determination (in pixels for
keypoint scale 1).indexChange - index remapping of the bits.@opencv_core.Ptr public static opencv_features2d.BRISK create(int thresh, int octaves, @StdVector org.bytedeco.javacpp.FloatPointer radiusList, @StdVector org.bytedeco.javacpp.IntPointer numberList)
@opencv_core.Ptr public static opencv_features2d.BRISK create(int thresh, int octaves, @StdVector FloatBuffer radiusList, @StdVector IntBuffer numberList, float dMax, float dMin, @StdVector IntBuffer indexChange)
@opencv_core.Ptr public static opencv_features2d.BRISK create(int thresh, int octaves, @StdVector FloatBuffer radiusList, @StdVector IntBuffer numberList)
@opencv_core.Ptr public static opencv_features2d.BRISK create(int thresh, int octaves, @StdVector float[] radiusList, @StdVector int[] numberList, float dMax, float dMin, @StdVector int[] indexChange)
@opencv_core.Ptr public static opencv_features2d.BRISK create(int thresh, int octaves, @StdVector float[] radiusList, @StdVector int[] numberList)
@opencv_core.Str public org.bytedeco.javacpp.BytePointer getDefaultName()
opencv_core.AlgorithmgetDefaultName in class opencv_features2d.Feature2DCopyright © 2018. All rights reserved.