| BRISKCreate Method (IEnumerableSingle, IEnumerableInt32, Single, Single, IEnumerableInt32) |
The BRISK constructor for a custom pattern
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static BRISK Create(
IEnumerable<float> radiusList,
IEnumerable<int> numberList,
float dMax = 5.85f,
float dMin = 8.2f,
IEnumerable<int> indexChange = null
)
Public Shared Function Create (
radiusList As IEnumerable(Of Single),
numberList As IEnumerable(Of Integer),
Optional dMax As Single = 5.85F,
Optional dMin As Single = 8.2F,
Optional indexChange As IEnumerable(Of Integer) = Nothing
) As BRISK
public:
static BRISK^ Create(
IEnumerable<float>^ radiusList,
IEnumerable<int>^ numberList,
float dMax = 5.85f,
float dMin = 8.2f,
IEnumerable<int>^ indexChange = nullptr
)
static member Create :
radiusList : IEnumerable<float32> *
numberList : IEnumerable<int> *
?dMax : float32 *
?dMin : float32 *
?indexChange : IEnumerable<int>
(* Defaults:
let _dMax = defaultArg dMax 5.85f
let _dMin = defaultArg dMin 8.2f
let _indexChange = defaultArg indexChange null
*)
-> BRISK
Parameters
- radiusList
- Type: System.Collections.GenericIEnumerableSingle
defines the radii (in pixels) where the samples around a keypoint are taken (for keypoint scale 1). - numberList
- Type: System.Collections.GenericIEnumerableInt32
defines the number of sampling points on the sampling circle. Must be the same size as radiusList.. - dMax (Optional)
- Type: SystemSingle
threshold for the short pairings used for descriptor formation (in pixels for keypoint scale 1). - dMin (Optional)
- Type: SystemSingle
threshold for the long pairings used for orientation determination (in pixels for keypoint scale 1). - indexChange (Optional)
- Type: System.Collections.GenericIEnumerableInt32
index remapping of the bits.
Return Value
Type:
BRISK[Missing <returns> documentation for "M:OpenCvSharp.BRISK.Create(System.Collections.Generic.IEnumerable{System.Single},System.Collections.Generic.IEnumerable{System.Int32},System.Single,System.Single,System.Collections.Generic.IEnumerable{System.Int32})"]
See Also