From 46e1b263e1f9a37da4df224b11937d2480eb27d9 Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Fri, 15 May 2015 17:25:05 +0000
Subject: [PATCH] testing other losses

---
 src/data.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/data.c b/src/data.c
index 902f30c..8e290c4 100644
--- a/src/data.c
+++ b/src/data.c
@@ -165,7 +165,7 @@
 
         w = constrain(0, 1, w);
         h = constrain(0, 1, h);
-        if (w == 0 || h == 0) continue;
+        if (w < .01 || h < .01) continue;
         if(1){
             //w = sqrt(w);
             //h = sqrt(h);

--
Gitblit v1.10.0