aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormwturvey <michael.w.turvey@intel.com>2017-03-30 11:50:25 -0700
committermwturvey <michael.w.turvey@intel.com>2017-03-30 11:50:25 -0700
commit7ea900d3c0ce02bf5867e73dc2bbe3988207c477 (patch)
tree6adbefbcb4f6daf7f3d484b5a24df53277c0891a
parenta3837d79442e1845baf441b8f84b41da3e8d81bc (diff)
downloadlibsurvive-7ea900d3c0ce02bf5867e73dc2bbe3988207c477.tar.gz
libsurvive-7ea900d3c0ce02bf5867e73dc2bbe3988207c477.tar.bz2
poser tweaks
-rw-r--r--src/poser_turveytori.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/poser_turveytori.c b/src/poser_turveytori.c
index 47147b0..5d25294 100644
--- a/src/poser_turveytori.c
+++ b/src/poser_turveytori.c
@@ -534,13 +534,13 @@ static Point RefineEstimateUsingModifiedGradientDescent1(Point initialEstimate,
// very slowly, and we should just take what we've got and move on.
// This also seems to happen almost only when data is a little more "dirty"
// because the tracker is being rotated.
- if (i > 120)
+ if (i > 900)
{
//printf("i got big");
break;
}
}
- printf(" i=%d ", i);
+ printf(" i=%3d ", i);
return lastPoint;
}