Вырезание миниатюры лица с фотографии
- face-crop.sh
#!/bin/bash file=$1 name=$(basename "$file") ratio=30 facedetect -o "test.jpg" "$file" --best | while read x y w h; do let x1=$x-$w*$ratio/100 let y1=$y-$h*$ratio/100 let w1=$w+$w*$ratio*2/100 let h1=$h+$h*$ratio*2/100 # convert "$file" -crop ${w}x${h}+${x}+${y} "${name}_face.jpg" convert "$file" -crop ${w1}x${h1}+${x1}+${y1} -resize 60x60 "${name}_big.jpg" break done