rt my images to PPM format, which is one of those image formats that no-one uses but somehow is the lowest common denominator for image processing command line apps. I use the program ‘... 9-20-2-110"
# Find the center of the face in the image. Crop the image along the center of
# the face.
# Requirements: ... E_W FACE_CENTER: $FACE_CENTER"
}
function crop_image() {
jpeg="$1"
ext=${jpeg##*.}
base=`basenam...
for file in $@; do
echo "Processing file: $file"
find_center $file
crop_image $file
done
</code>