(image_path, out_file)
| 651 | |
| 652 | |
| 653 | def convert_image_to_bin(image_path, out_file): |
| 654 | # Open image |
| 655 | with Image.open(image_path) as img: |
| 656 | with open(out_file, 'wb') as bin_file: |
| 657 | # Convert image to bytes and write to .bin file |
| 658 | img_bytes = img.tobytes() |
| 659 | bin_file.write(img_bytes) |
| 660 | |
| 661 | |
| 662 | def process_images(output_dir): |