cosmetic change

This commit is contained in:
Tonton Th 2019-12-18 15:27:06 +01:00
parent 538023b586
commit d0b64910f3
2 changed files with 3 additions and 2 deletions

View File

@ -199,7 +199,7 @@ if (NULL==bytes) {
/* compute max value */ /* compute max value */
maximum = (double)fimg_get_maxvalue(src); maximum = (double)fimg_get_maxvalue(src);
fk = maximum / 255.0; fk = maximum / 255.0;
fprintf(stderr, " max values %g fk %g\n", maximum, fk); if (verbosity > 1) fprintf(stderr, "max val %g fk %g\n", maximum, fk);
/* massage des pixels */ /* massage des pixels */
bptr = bytes; bptr = bytes;
for (idx=0; idx<sz; idx++) { for (idx=0; idx<sz; idx++) {

View File

@ -2,7 +2,8 @@
# building the base library # building the base library
# #
COPT = -Wall -fpic -g -no-pie -DDEBUG_LEVEL=0 COPT = -Wall -fpic -g -pg -no-pie -DDEBUG_LEVEL=0
OBJS = fimg-core.o fimg-pnm.o fimg-file.o fimg-math.o \ OBJS = fimg-core.o fimg-pnm.o fimg-file.o fimg-math.o \
fimg-timers.o operators.o fimg-2gray.o \ fimg-timers.o operators.o fimg-2gray.o \
interpolate.o fimg-compare.o contrast.o interpolate.o fimg-compare.o contrast.o