我是靠谱客的博主 清脆小熊猫,最近开发中收集的这篇文章主要介绍读取图片宽高信息,打包大小最小的模块matplotlib,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

想要写个读取图片宽高的脚本,结果使用cv2和PIL,imageio模块在用pyinstaller打包后,大小都在300mb以上,气死了,
最终结果使用matplotlib 模块,打包结果为4.6mb,这才对嘛.

# coding:utf-8
import cv2
import imageio
from scipy import misc
from PIL import Image
from matplotlib import pyplot as plt
image_path = "./images/000011.jpg"
# 使用pillow读取图片,获取图片的宽和高
img_pillow = Image.open(image_path)
img_width = img_pillow.width
# 图片宽度
img_height = img_pillow.height
# 图片高度
print("width -> {}, height -> {}".format(img_width, img_height))
img_cv = cv2.imread(image_path)
img_imageio = imageio.imread(image_path)
img_scipy = misc.imread(image_path)
img_matplot = plt.imread(image_path)
print(img_cv.shape)
print(img_imageio.shape)
print(img_scipy.shape)
print(img_matplot.shape)

最后

以上就是清脆小熊猫为你收集整理的读取图片宽高信息,打包大小最小的模块matplotlib的全部内容,希望文章能够帮你解决读取图片宽高信息,打包大小最小的模块matplotlib所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(32)

评论列表共有 0 条评论

立即
投稿
返回
顶部