Example #1
0
 /// <summary>
 /// Create a new DP Seam Finder
 /// </summary>
 /// <param name="costFunc">The cost function</param>
 public DpSeamFinder(CostFunction costFunc = CostFunction.Color)
 {
     _ptr = StitchingInvoke.cveDpSeamFinderCreate(costFunc, ref _seamFinderPtr);
 }