http://www.emgu.com
Namespace: Emgu.CV.FlannAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic SearchParams(
int checks = 32,
float eps = 0f,
bool sorted = true
)
Public Sub New (
Optional checks As Integer = 32,
Optional eps As Single = 0F,
Optional sorted As Boolean = true
)
public:
SearchParams(
int checks = 32,
float eps = 0f,
bool sorted = true
)
new :
?checks : int *
?eps : float32 *
?sorted : bool
(* Defaults:
let _checks = defaultArg checks 32
let _eps = defaultArg eps 0f
let _sorted = defaultArg sorted true
*)
-> SearchParams
Parameters
- checks (Optional)
- Type: SystemInt32
how many leafs to visit when searching for neighbors (-1 for unlimited) - eps (Optional)
- Type: SystemSingle
Search for eps-approximate neighbors - sorted (Optional)
- Type: SystemBoolean
Only for radius search, require neighbors sorted by distance
See Also