图像灰度化
图像灰度化1、实现原理2、实现效果3、实现代码
1、实现原理
使用cv2.cvtColor()函数进行颜色空间转换。
2、实现效果
cd ~/opencv xxxxxxxxxx python3 08.image_grayscale.py
注意:选中图片按q可以退出程序!

3、实现代码
x import cv2 def grayscale_image(input_path, output_path): image = cv2.imread(input_path) if image is None: print("Error: Unable to open image file.") return gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) if cv2.imwrite(output_path, gray_image): print(f"Image saved to {output_path}") cv2.imshow('Image Preview', cv2.imread(output_path)) cv2.waitKey(0) cv2.destroyAllWindows() else: print("Error: Unable to save image file.") grayscale_image('/home/jetson/opencv/images/yahboom_logo.png', \ '/home/jetson/opencv/images/yahboom_logo_grayscale.png')