2012-05-03 145 views

回答

0

OpenCVsharp中的Threshold函數調用是爲了返回void而不處理thresholdType_Otsu。

需要進行修改,以

public static double Threshold(CvArr src, CvArr dst, double threshold, double max_value, ThresholdType threshold_type) 
    { 
     if (src == null) 
      throw new ArgumentNullException("src"); 
     if (dst == null) 
      throw new ArgumentNullException("dst"); 
     return CvInvoke.cvThreshold(src.CvPtr, dst.CvPtr, threshold, max_value, threshold_type); 
    } 

時,返回的閾值,以及其他情況下,返回的是空這工作。

相關問題