Browse Source

Fixed getConfodence return type in ImageData.

Daniel Kauth 11 years ago
parent
commit
5a88ca0ab4
1 changed files with 1 additions and 1 deletions
  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);
         }