Browse Source

Improved PalmDetector stability.

Daniel Kauth 11 years ago
parent
commit
0237244bce
1 changed files with 5 additions and 2 deletions
  1. 5 2
      bbiwarg/Detectors/Palm/PalmDetector.cs

+ 5 - 2
bbiwarg/Detectors/Palm/PalmDetector.cs

@@ -60,9 +60,12 @@ namespace bbiwarg.Detectors.Palm
                 removePointsFromContour(wristLine, 1);
                 removePointsFromContour(thumbLine, 1);
 
-                findPalmRect();
+                if (palmContour.Count<Point>() != 0)
+                {
+                    findPalmRect();
 
-                draw();
+                    draw();
+                }
             }
         }