opencv数据的读取
作者:互联网
imread
函数的作用是从文件中读取一张图片。
python调用语法:
cv2.imread(filename[, flags]) → retval
参数说明:
filename:需要载入的文件名
flags:指定载入图片的颜色类型
>0时返回三通道的彩色图片
=0时返回灰度图
<0时Return the loaded image as is. Note that in the current implementation the alpha channel, if any, is stripped from the output image. For example, a 4-channel RGBA image is loaded as RGB if flags
≥
\ge
≥ 0 .
如果当前图片无法读取(由于文件缺失、权限不够、不支持的或非法的数据格式),那么这个函数会返回一个空的矩阵。目前函数支持如下的文件格式:
- Windows bitmaps:即
*.bmp
,*.dib
- JPEG文件:即
*.jpeg
,*.jpg
,*.jpe
- 待补充
标签:读取,cv2,filename,opencv,html,imread,数据 来源: https://blog.csdn.net/kking_edc/article/details/120674646