adding HSV functions, with native bugs

This commit is contained in:
2020-09-08 22:55:17 +02:00
parent 3cf887e103
commit 44165c0a03
3 changed files with 109 additions and 4 deletions

View File

@@ -4,7 +4,8 @@ COPT = -Wall -fpic -g -no-pie -DDEBUG_LEVEL=0
DEPS = ../floatimg.h Makefile
OBJS = fimg-png.o fimg-tiff.o misc-plots.o filtrage.o utils.o \
fimg-libpnm.o rampes.o sfx0.o geometry.o rotate.o \
equalize.o fimg-fits.o saturation.o histogram.o
equalize.o fimg-fits.o saturation.o histogram.o \
hsv.o
#---------------------------------------------------------------
@@ -57,5 +58,8 @@ sfx0.o: sfx0.c $(DEPS)
rampes.o: rampes.c $(DEPS)
gcc $(COPT) -c $<
hsv.o: hsv.c $(DEPS)
gcc $(COPT) -c $<
utils.o: utils.c $(DEPS)
gcc $(COPT) -c $<