Property | Type | Description | |
---|---|---|---|
FlannBasedMatcher | System | ||
FlannBasedMatcher | System | ||
FromPtr |
Method | Description | |
---|---|---|
Add ( IEnumerable |
Add descriptors to train descriptor collection.
|
|
Clear ( ) : void |
Clear train descriptors collection.
|
|
FlannBasedMatcher ( OpenCvSharp.Flann.IndexParams indexParams = null, OpenCvSharp.Flann.SearchParams searchParams = null ) : System |
|
|
IsMaskSupported ( ) : bool |
Return true if the matcher supports mask in match methods.
|
|
Train ( ) : void |
Train matcher (e.g. train flann index). In all methods to match the method train() is run every time before matching. Some descriptor matchers (e.g. BruteForceMatcher) have empty implementation of this method, other matchers really train their inner structures (e.g. FlannBasedMatcher trains flann::Index). So nonempty implementation of train() should check the class object state and do traing/retraining only if the state requires that (e.g. FlannBasedMatcher trains flann::Index if it has not trained yet or if new descriptors have been added to the train collection).
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Releases the resources
|
Method | Description | |
---|---|---|
FlannBasedMatcher ( |
Creates instance by raw pointer T*
|
|
FlannBasedMatcher ( Ptr |
Creates instance by cv::Ptr<T>
|
|
FromPtr ( |
Creates instance from cv::Ptr<T> . ptr is disposed when the wrapper disposes.
|
public Add ( IEnumerable |
||
descriptors | IEnumerable |
Descriptors to add. Each descriptors[i] is a descriptors set from one image. |
return | void |
protected Dispose ( bool disposing ) : void | ||
disposing | bool | /// If disposing equals true, the method has been called directly or indirectly by a user's code. Managed and unmanaged resources can be disposed. /// If false, the method has been called by the runtime from inside the finalizer and you should not reference other objects. Only unmanaged resources can be disposed. /// |
return | void |
public FlannBasedMatcher ( OpenCvSharp.Flann.IndexParams indexParams = null, OpenCvSharp.Flann.SearchParams searchParams = null ) : System | ||
indexParams | OpenCvSharp.Flann.IndexParams | |
searchParams | OpenCvSharp.Flann.SearchParams | |
return | System |