Browse Source

Deleted incomplete code.

Daniel Kauth 11 years ago
parent
commit
7d8aca0beb
1 changed files with 1 additions and 20 deletions
  1. 1 20
      bbiwarg/Images/PalmImage.cs

+ 1 - 20
bbiwarg/Images/PalmImage.cs

@@ -26,31 +26,12 @@ namespace bbiwarg.Images
 
         private void findContours()
         {
-            Image<Gray, Byte> storage = image.Clone();
-
-            MCvContour countour = new MCvContour();
-
-            CvInvoke.cvFindContours(image.Ptr, storage.Ptr, 
+        
         }
 
         public bool belongsToPalm(int x, int y)
         {
             return false;
         }
-
-        private Point getPointWithDepth(Int16 depth)
-        {
-            for (int x = 0; x < width; ++x)
-            {
-                for (int y = 0; y < height; ++y)
-                {
-                    if (image.Data[y, x, 0] == depth)
-                        return new Point(x, y);
-                }
-            }
-            return new Point(0, 0);
-        }
-
-
     }
 }