我只想以某种方式使用convert命令,以使图片变为灰色的色彩空间,被否定并具有更高的对比度。 颜色空间和否定不是问题,但是对比度是一个问题。我使用以下bash脚本:
for i in *
do
echo $i
convert $i -colorspace gray gray/$i
convert gray/$1 -contrast -contrast contrasted/$1
convert contrasted/$i -negate negated/$i
done
我将对比度命令移到了所有可能的位置,但始终会出现以下错误:
convert-im6.q16: no decode delegate for this image format `' @ error/constitute.c/ReadImage/504.
convert-im6.q16: no images defined `contrasted/' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: unable to open image `contrasted/s5_rechts_abgeschnitten.png': Datei oder Verzeichnis nicht gefunden @ error/blob.c/OpenBlob/2701.
convert-im6.q16: no images defined `negated/s5_rechts_abgeschnitten.png' @ error/convert.c/ConvertImageCommand/3258.
我真的不知道该怎么办,所以如果有人得到解决方案,那会很酷。