浏览代码

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);
         }