예제 #1
0
 /// <summary>
 /// Create a BFMatcher of the specific distance type
 /// </summary>
 /// <param name="distanceType">The distance type</param>
 /// <param name="crossCheck">Specify whether or not cross check is needed. Use false for default.</param>
 public BFMatcher(DistanceType distanceType, bool crossCheck = false)
 {
     _ptr = Features2DInvoke.cveBFMatcherCreate(distanceType, crossCheck, ref _descriptorMatcherPtr);
 }