Click or drag to resize

BRISKCreate Method (Int32, Int32, IEnumerableSingle, IEnumerableInt32, Single, Single, IEnumerableInt32)

The BRISK constructor for a custom pattern, detection threshold and octaves

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static BRISK Create(
	int thresh,
	int octaves,
	IEnumerable<float> radiusList,
	IEnumerable<int> numberList,
	float dMax = 5.85f,
	float dMin = 8.2f,
	IEnumerable<int> indexChange = null
)

Parameters

thresh
Type: SystemInt32
AGAST detection threshold score.
octaves
Type: SystemInt32
detection octaves. Use 0 to do single scale.
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.Int32,System.Int32,System.Collections.Generic.IEnumerable{System.Single},System.Collections.Generic.IEnumerable{System.Int32},System.Single,System.Single,System.Collections.Generic.IEnumerable{System.Int32})"]

See Also