コード例 #1
0
ファイル: CVHistogram.cs プロジェクト: tdck/opencvdotnet
 public double this[int idx0]
 {
     get
     {
         float res = PInvoke.cvQueryHistValue_1D(_hist, idx0);
         CVUtils.CheckLastError();
         return(res);
     }
 }