#!/bin/bash
### Apply CLAHE to raw images

mkdir mainimages-clahe
cd ./mainimages/
for image in *; do
        new="clahe_${image}"
        convert $image -clahe 25x25%+128+3 ../mainimages-clahe/$new
done
