1-图像读取

skimage

复制代码
import skimage
from skimage import io, color

# 读取灰度图,能做到16bit无损
img = io.imread('CT-220s_681.tif')   # 直接就是numpy类型,dtype根据图片格式决定,np默认float64格式
print(img.shape, type(img), img.dtype)
print(img)

# 读取彩色图,默认RGB
img = io.imread('0006.png')   
print(img.shape, type(img), img.dtype)
print(img)

输出

复制代码
(721, 1994) <class 'numpy.ndarray'> uint16
[[47532 46889 47658 ... 46906 46789 46942]
 [48233 47433 47538 ... 47491 47502 47378]
 [47926 46989 46765 ... 46272 46423 46601]
 ...
 [47306 45753 46147 ... 47469 47149 47082]
 [46289 46380 46739 ... 47196 46787 47083]
 [46588 46007 46457 ... 46843 47372 47149]]

(2040, 1356, 3) <class 'numpy.ndarray'> uint8
[[[158 120  97]
  ...
  [126 109  79]]]


复制代码
# RGB转换为灰度图。自动转化到[0,1],float64
gray_img = color.rgb2gray(img)
print(gray_img.shape, type(gray_img), gray_img.dtype)

输出

复制代码
(2040, 1356) <class 'numpy.ndarray'> float64
相关推荐
子不语1801 小时前
Python——函数
开发语言·python
daidaidaiyu1 小时前
一文入门 LangChain 开发
python·ai
JJ1M82 小时前
用 Python 快速搭建一个支持 HTTPS、CORS 和断点续传的文件服务器
服务器·python·https
汤姆yu2 小时前
基于python大数据的小说数据可视化及预测系统
大数据·python·信息可视化
x***J3482 小时前
Python多线程爬虫
开发语言·爬虫·python
m***D2863 小时前
Python网络爬虫实战案例
开发语言·爬虫·python
ID_180079054733 小时前
基于 Python 的淘宝商品详情数据结构化解析:SKU、价格与库存字段提取
开发语言·数据结构·python
Laughtin3 小时前
终端Python环境的选择与切换
开发语言·python
JHC0000004 小时前
Python PDF 相关操作
开发语言·python·pdf
databook4 小时前
Manim进阶:用背景图片让你的数学视频脱颖而出
python·动效