IMGIN = letter_j.png
LINES = 150
-BASENAME = output
-FORMAT = csv
+CSVOUT = dilation.csv
CSVIN = $(IMGIN:.png=.csv)
-CSVOUT = $(BASENAME)1.$(FORMAT)
IMGOUT = $(SRC:.dsp=.png)
all: $(IMGOUT)
octave -qf img_write.m
$(CSVOUT): $(SRC) $(CSVIN)
- faustine -d $(SRC) -i $(CSVIN) -t $(LINES) --oformat $(FORMAT) --obasename $(BASENAME)
+ faustine -f $(SRC) -l $(LINES) < $(CSVIN) 1> $@
$(CSVIN): $(IMGIN)
octave -qf img_read.m
clean::
- rm -f gmon.out $(IMGOUT) $(BASENAME)* *csv
+ rm -f gmon.out $(IMGOUT) $(CSVOUT)