diff options
author | Thomas White <taw@physics.org> | 2011-10-05 14:13:02 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:38 +0100 |
commit | 7d7cf5b23a521ffe74f00a94631ec0dc09ed53db (patch) | |
tree | bb51a7daf945945427a8fcd57f2c0a08dc1b3271 /src/scaling-report.c | |
parent | 1e94b9a89acc9d24a816e5b80ffd6ed97b91c2af (diff) |
Reduce number of bins in intensity histograms
Diffstat (limited to 'src/scaling-report.c')
-rw-r--r-- | src/scaling-report.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scaling-report.c b/src/scaling-report.c index fa342957..719402bc 100644 --- a/src/scaling-report.c +++ b/src/scaling-report.c @@ -517,7 +517,7 @@ static void intensity_histogram(cairo_t *cr, const struct image *images, { int f_max; int i, b; - const int nbins = 100; + const int nbins = 30; double int_max, int_inc; double int_low[nbins]; double int_high[nbins]; |