浏览代码

Adde binary threshold method.

Daniel Kauth 11 年之前
父节点
当前提交
6ac37c845d
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      bbiwarg/Images/DepthImage.cs

+ 5 - 0
bbiwarg/Images/DepthImage.cs

@@ -71,6 +71,11 @@ namespace bbiwarg.Images
             }
         }
 
+        public void thresholdBinary(Int16 thresholdDepth)
+        {
+            image = image.ThresholdBinary(new Gray(thresholdDepth), new Gray(Int16.MaxValue));
+        }
+
         public int[] getSmoothedHistogram()
         {
             Int16 minDepth = getMinDepth();