python中读取tif

用skimage读取tif

from skimage import io
imgpath='image/file/name.tif'
img=io.imread(imgpath)
r=img[:,:,0]
g=img[:,:,1]
b=img[:,:,2]
nir=img[:,:,3]

读取得到的img是数组ndarray,type=unit32, channel顺序是RGB/RGBA,像素值默认范围:0-65536
io.imread()可以读取的tif波段数:
gray --MN
RGB --M
N3
RGBA --M
N*4 (RGBA: red-green-blud-alpha, 除了tif,png也可以保存此格式)

PIL读取

from PIL import Image
imgpath='image/file/name.tif'
img=Image.open(imgpath)
print('%s, %s, %s' % (img.mode, img.size, img.format))
img.show()

读取得到的img是数组ndarray,type=…, channel顺序是RGB, 像素值默认范围为0-255

scipy读取

import scipy
from scipy import misc
imgpath='image/file/name.tif'
img=misc.imread(imgpath)
#or
from scipy import ndimage
img = ndimage.imread(imgpath, mode='RGB')
"""
Notes:
imread uses the Python Imaging Library (PIL) to read an image. The following notes are from the PIL documentation.使用Python图像库(PIL)读取图像

mode can be one of the following strings:
‘L’ (8-bit pixels, black and white)(8位像素,黑白)
‘P’ (8-bit pixels, mapped to any other mode using a color palette)(8位像素,使用调色板映射到任何其他模式)
‘RGB’ (3x8-bit pixels, true color)(3x8位像素,真彩色)
‘RGBA’ (4x8-bit pixels, true color with transparency mask)(4x8位像素,带透明蒙版的真彩色)
‘CMYK’ (4x8-bit pixels, color separation)(4x8位像素,分色)
‘YCbCr’ (3x8-bit pixels, color video format)(3x8位像素,彩色视频格式)
‘I’ (32-bit signed integer pixels)(32位有符号整数像素)
‘F’ (32-bit floating point pixels)(32位浮点像素)

PIL also provides limited support for a few special modes, including ‘LA’ (‘L’ with alpha), ‘RGBX’ (true color with padding) and ‘RGBa’ (true color with premultiplied alpha).
PIL还提供了对某些特殊模式的有限支持,包括“ LA”(带L的“ L”),“ RGBX”(带填充的真彩色)和“ RGBa”(带预乘alpha的真彩色)。

When translating a color image to black and white (mode ‘L’, ‘I’ or ‘F’), the library uses the ITU-R 601-2 luma transform:
将彩色图像转换为黑白图像(模式“ L”,“ I”或“ F”)时,该库使用ITU-R 601-2亮度转换:
L = R * 299/1000 + G * 587/1000 + B * 114/1000

When flatten is True, the image is converted using mode ‘F’. When mode is not None and flatten is True, the image is first converted according to mode, and the result is then flattened using mode ‘F’.
展平为True时,将使用“ F”模式转换图像。当mode不为None且flatten为True时,将首先根据mode转换图像,然后使用“ F”模式将结果展平。
"""

还没写完:
另外参考:
Python 中各种imread函数的区别与联系

Python的各种imread函数在实现方式和读取速度上有何区别?

还有一篇:
np.astype 如何将unit32/float 转为uint8,或是是如何将图像的像素值转到0-255(uint8)
参考:
Numpy数据类型转换astype,dtype

图像处理: 如何将 像素值 控制在 值域[0, 255]

将数据变换到0到255之间,归一化
添加链接描述

  • 5
    点赞
  • 25
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值