From 490807b4f205cc7de810e946b87631b5973cef72 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Wed, 17 Feb 2010 15:04:37 +0100 Subject: Do peak locations in floating point --- src/render.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/render.c') diff --git a/src/render.c b/src/render.c index 3586b962..9bdb9a75 100644 --- a/src/render.c +++ b/src/render.c @@ -174,16 +174,14 @@ static void show_marked_features(struct image *image, guchar *data, for ( i=0; ifeatures); i++ ) { struct imagefeature *f; - int x, y; + float x, y; double th; f = image_get_feature(image->features, i); if ( f == NULL ) continue; - x = f->x; y = f->y; - - x /= binning; - y /= binning; + x = f->x / (float)binning; + y = f->y / (float)binning; for ( th=0; th<2*M_PI; th+=M_PI/40.0 ) { -- cgit v1.2.3