This Python script leverages the OpenCV library for face detection and the PIL (Pillow) library for image processing to detect and crop a human head in an image. The detect_and_crop_head function takes an input image file, detects the face using a pre-trained Haar Cascade classifier, and crops the image to include the entire head with a 1:1 aspect ratio. The cropping is achieved by specifying a factor that determines the size of the cropped region around the detected face. Adjust the factor parameter based on the specific requirements of your images.
input_image_path = "path/to/your/input/image.jpg"
output_image_path = "path/to/save/cropped/head.jpg"
detect_and_crop_head(input_image_path, output_image_path, factor=1.5)