Browse Source

reverted recent changes to edge-image

Alexander Hendrich 11 years ago
parent
commit
0845160c13
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bbiwarg/Images/EdgeImage.cs

+ 1 - 1
bbiwarg/Images/EdgeImage.cs

@@ -28,7 +28,7 @@ namespace bbiwarg.Images
             double interval = max[0] - min[0];
             dimg = dimg.Convert(delegate(byte d) {return (byte) ((d/interval)*255);});*/
             
-            Image = dimg.Canny(150, 100, 3);
+            Image = dimg.Canny(100, 75, 3);
 
             // draw blue edges in outputImage
             outputImage.Image[2] = Image.ThresholdBinary(new Gray(0), new Gray(1)).Mul(255);