Prechádzať zdrojové kódy

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

Alexander Hendrich 10 rokov pred
rodič
commit
a59311e171
1 zmenil súbory, kde vykonal 5 pridanie a 2 odobranie
  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();
+                }
             }
         }