检查图像是否是灰度图。
(image_path)
| 1142 | assert sharpness_image < sharpness_ref_image, "The sharpness of the image is not lower than the reference image." |
| 1143 | |
| 1144 | def is_grayscale(image_path): |
| 1145 | """ |
| 1146 | 检查图像是否是灰度图。 |
| 1147 | """ |
| 1148 | image = Image.open(image_path) |
| 1149 | return image.mode == 'L' |
| 1150 | |
| 1151 | def test_task_100(trajectory): |
| 1152 | image_path = "./output/100.png" |