is there any lightweight command line batch image cropping tool(Linux or Windows) which can handle a variety of the formats ?
for f in final/**/*; do convert -crop 950x654+0+660 "$f" "${f%.jpg}".jpg done
This script loops through all the sub-folders and crops the .jpg files.