diff options
author | Thomas White <taw@bitwiz.org.uk> | 2009-12-16 10:36:53 -0800 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2009-12-16 10:36:53 -0800 |
commit | d84fd5ff386a1393bbec3b67c8f165c95613a53e (patch) | |
tree | fcba5c62793a58522f17a3a860f997abc2e72ecc /src/detector.c | |
parent | 5ee02bbd3e86bb6b83a457009ed0a4b5d864dec9 (diff) |
Add number-viewing window, use signed values as well
Diffstat (limited to 'src/detector.c')
-rw-r--r-- | src/detector.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/detector.c b/src/detector.c index 3da5c643..bbfdcd98 100644 --- a/src/detector.c +++ b/src/detector.c @@ -75,15 +75,15 @@ static void bloom_values(int *tmp, int x, int y, } -static uint16_t *bloom(int *hdr_in, int width, int height) +static int16_t *bloom(int *hdr_in, int width, int height) { int x, y; - uint16_t *data; + int16_t *data; int *tmp; int *hdr; int did_something; - data = malloc(width * height * sizeof(uint16_t)); + data = malloc(width * height * sizeof(int16_t)); tmp = malloc(width * height * sizeof(int)); hdr = malloc(width * height * sizeof(int)); @@ -131,7 +131,7 @@ static uint16_t *bloom(int *hdr_in, int width, int height) /* Turn into integer array of counts */ for ( x=0; x<width; x++ ) { for ( y=0; y<height; y++ ) { - data[x + width*y] = (uint16_t)tmp[x + width*y]; + data[x + width*y] = (int16_t)tmp[x + width*y]; } } @@ -218,13 +218,13 @@ void record_image(struct image *image, int do_water, int do_poisson, image->data = bloom(image->hdr, image->width, image->height); } else { image->data = malloc(image->width * image->height - * sizeof(uint16_t)); + * sizeof(int16_t)); for ( x=0; x<image->width; x++ ) { for ( y=0; y<image->height; y++ ) { int val; val = image->hdr[x + image->width*y]; if ( val > SATURATION ) val = SATURATION; - image->data[x + image->width*y] = (uint16_t)val; + image->data[x + image->width*y] = (int16_t)val; } } } |