demo_fmorph: 1ere version

This commit is contained in:
tTh
2023-01-22 15:26:55 +01:00
parent 63bc4ed7af
commit d58decefcb
3 changed files with 129 additions and 2 deletions

View File

@@ -1,7 +1,18 @@
DBGL = '-DDEBUG_LEVEL=1 -g '
DBGL = -DDEBUG_LEVEL=1 -g
fimg2povhf: fimg2povhf.c Makefile
gcc -Wall $(DBGL) $< -limage -lfloatimg -lm -o $@
# --------------------------------------------------------
demo_fmorph: demo_fmorph.c Makefile
gcc -Wall $(DBGL) $< -lfloatimg -lpnglite -lm -o $@
in.fimg: Makefile
mkfimg -t tpat0 -v $@ 640 480
out.png: in.fimg demo_fmorph
./demo_fmorph $< $@
# --------------------------------------------------------