一、走进OpenCV-2.获取图像属性

import cv2 as cv

"""
常用的3个属性:shape、size和dtype
    shape:
        如果是彩色图像,获取的是一个由图像的【像素列数,像素行数,通道数】所组成的数组
        如果是灰度图像,获取的事一个包含图像的【像素列数,像素行数】组成的的数组
    size:
        获取的是图像包含的像素个数,其值为"像素列数 * 像素行数 * 通道数",灰度图像的通道数为1
    dtype:
        获取的是图像的像素类型
"""
print('彩色图像:\n')
image_color = cv.imread('./ImgFile/Conan.jpg')
print('彩色图像的属性:')
print('shape = ', image_color.shape)    # shape =  (640, 640, 3)
print("size = ", image_color.size)      # size =  1228800
print("dtype = ", image_color.dtype)    # dtype =  uint8

print('灰度图像:\n')
image_Gray = cv.imread('ImgFile/Conan.jpg', 0)
print('灰度图像的属性:')
print("shape = ", image_Gray.shape)     # shape =  (640, 640)
print("size = ", image_Gray.size)       # size =  409600
print("dtype = ", image_Gray.dtype)     # dtype =  uint8

    原文作者:秋雨淅淅晚心仪
    原文地址: https://blog.csdn.net/Zhong_Er_Bing/article/details/123099717
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞