ソースを参照

Fixed getConfodence return type in ImageData.

Daniel Kauth 11 年 前
コミット
5a88ca0ab4
1 ファイル変更1 行追加1 行削除
  1. 1 1
      bbiwarg/DataSource/ImageData.cs

+ 1 - 1
bbiwarg/DataSource/ImageData.cs

@@ -39,7 +39,7 @@ namespace bbiwarg.DataSource
             return depthImage.getDepth(x, y);
         }
 
-        public float getConfidence(int x, int y)
+        public short getConfidence(int x, int y)
         {
             return confidenceImage.getConfidence(x, y);
         }