カラー画像かモノクロか判別する。
takuya@:$ convert sample.cl.jpg -colorspace HSB -separate -delete 0 -fx "u*v" -blur 2x2 -threshold 30% -format '%[fx:mean]\n' info: 0.693993 takuya@:$ convert sample.bw.jpg -colorspace HSB -separate -delete 0 -fx "u*v" -blur 2x2 -threshold 30% -format '%[fx:mean]\n' info: 0
スキャンしたデータがカラー(表紙)か本文(頁)かを判断したいので調べた。0に近くなれば白黒
彩度をみて -threashold で許容範囲を決めて、 -format で数字にしてる
コマンドはこんな感じ。
convert sample.cl.jpg \ -colorspace HSB \ -separate -delete 0 \ -fx "u*v" -blur 2x2 \ -threshold 30% \ -format '%[fx:mean]\n' info: