소스 검색

Merge branch 'master' of https://git.tk.informatik.tu-darmstadt.de/etri-smartspaces

Alexander Hendrich 11 년 전
부모
커밋
8081da82bb
1개의 변경된 파일1개의 추가작업 그리고 20개의 파일을 삭제
  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);
-        }
-
-
     }
 }