python代码计算图像的分辨率

Posted Data+Science+Insight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python代码计算图像的分辨率相关的知识,希望对你有一定的参考价值。

python代码计算图像的分辨率

 

See the source image

def jpeg_res(filename):
   """"This function prints the resolution of the jpeg image file passed into it"""

   # open image for reading in binary mode
   with open(filename,\'rb\') as img_file:

       # height of image (in 2 bytes) is at 164th position
       img_file.seek(163)

       # read the 2 bytes
       a = img_file.read(2)

       # calculate height
       height = (a[0] << 8) + a[1]

       # next 2 bytes is width
       a = img_file.read(2)

       # calculate width
       width = (a[0] << 8) + a[1]

   print("The resolution of the image is",width,"x",height)

jpeg_res("dca.jpg")
The resolution of the image is 21799 x 21333

以上是关于python代码计算图像的分辨率的主要内容,如果未能解决你的问题,请参考以下文章

10 行代码运行对象检测(一个图像识别的 Python 库)

python颜色压缩的结果颜色比保存颜色深

python依据经纬坐标计算两点距离并求图像横纵分辨率

图像金字塔高斯金字塔拉普拉斯金字塔是怎么回事?附利用拉普拉斯金字塔和高斯金字塔重构原图的Python-OpenCV代码

python求不同分辨率图像的峰值信噪比,一文搞懂

毕业设计基于深度学习的图像超分辨率重建 - opencv python cnn