1 Star 0 Fork 0

endless/yq_notes_img1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
尺寸.py 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
endless 提交于 2022-11-12 11:57 . bq
#!/usr/bin/env python
# encoding: utf-8
"""
@author: H
@software: Pycharm
@file: ImageInterpolation.py
@time: 2020/10/16 8:28
"""
import os
import numpy as np
from PIL import Image
file_path = r'C:\Users\1\Desktop\save_img\417306271310413824-17.tif'
img = Image.open(file_path) # 读取图片,格式为Image
# 把Image格式的图片转化为numpy格式进性图像处理
img = np.array(img, dtype=np.uint8)
height, width, mode = img.shape[0], img.shape[1], img.shape[2] # 取出高、宽、通道数
print(height, width, mode) # (275 183 3)
# 缩放的目标大小,这里以缩放为原图的1/2为例
desWidth = int(512)
desHeight = int(512)
desImage = np.zeros((desHeight, desWidth, mode), np.uint8) # 定义一个目标图片代表的array,纯黑图片
# 像素填充
# 方法1:最近邻插值法
for des_x in range(0, desHeight):
for des_y in range(0, desWidth):
# 判断新像素点在原图中的像素点坐标
src_x = int(des_x * (height/desHeight))
src_y = int(des_y * (width/desWidth))
desImage[des_x, des_y] = img[src_x, src_y] # 填充
print(desImage.shape)
des_img = Image.fromarray(desImage)
des_img.save(r'C:\Users\1\Desktop\save_img\T512-17.tif') # 图片另存为
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/long_chaohuo/yq_notes_img1.git
git@gitee.com:long_chaohuo/yq_notes_img1.git
long_chaohuo
yq_notes_img1
yq_notes_img1
master

搜索帮助