Python基于opencv的图像压缩算法实例分析

作者:开心果汁 时间:2022-09-29 11:20:41 

本文实例讲述了Python基于opencv的图像压缩算法。分享给大家供大家参考,具体如下:

插值方法:

CV_INTER_NN - 最近邻插值,
CV_INTER_LINEAR - 双线性插值 (缺省使用)
CV_INTER_AREA - 使用象素关系重采样。当图像缩小时候,该方法可以避免波纹出现。当图像放大时,类似于 CV_INTER_NN 方法..
CV_INTER_CUBIC - 立方插值.

函数 cvResize 将图像 src 改变尺寸得到与 dst 同样大小。若设定 ROI,函数将按常规支持 ROI.

程序1:图像压缩(第一版)


# coding=utf-8
import time
time1 = time.time()
import cv2
image=cv2.imread("c:/1.jpg")
res = cv2.resize(image, (1280,960), interpolation=cv2.INTER_AREA)
# cv2.imshow('image', image)
# cv2.imshow('resize', res)
# cv2.waitKey(0)
# cv2.destroyAllWindows()
cv2.imwrite("C:/5.jpg",res)
time2=time.time()
print u'总共耗时:' + str(time2 - time1) + 's'

4.19M—377k 压缩了11倍

程序2:图像压缩(第二版)


#-*-coding:utf-8-*-
#############设置编码################
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
###################导入计算机视觉库opencv和图像处理库PIL####################
from PIL import Image
from PIL import ImageEnhance
from PIL import ImageFilter
import cv2
import time
time1 = time.time()
####################读入图像###############################
image=cv2.imread("c:/pic//0.jpg")
####################双三次插值#############################
res = cv2.resize(image, (1280,960), interpolation=cv2.INTER_AREA)
####################写入图像########################
cv2.imwrite("C:/pic/101.jpg",res)
###########################图像对比度增强##################
imgE = Image.open("c:/pic/101.jpg")
imgEH = ImageEnhance.Contrast(imgE)
img1=imgEH.enhance(2.8)
########################图像转换为灰度图###############
gray = img1.convert("L")
gray.save("C:/pic/3.jpg")
##########################图像增强###########################
# 创建滤波器,使用不同的卷积核
gary2=gray.filter(ImageFilter.DETAIL)
gary2.save("C:/pic/2.jpg")
#############################图像点运算#################
gary3=gary2.point(lambda i:i*0.9)
gary3.save("C:/pic/4.jpg")
# img1.show("new_picture")
time2=time.time()
print u'总共耗时:' + str(time2 - time1) + 's'

4.17M–>290kb

程序3:函数版本


#-*-coding:utf-8-*-
#############设置编码################
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
############导入计算机视觉库opencv和图像处理库PIL####################
from PIL import Image
from PIL import ImageEnhance
from PIL import ImageFilter
import cv2
import time
time1 = time.time()
########################自定义图像压缩函数############################
def img_zip(path,filename1,filename2):
 image = cv2.imread(path+filename1)
 res = cv2.resize(image, (1280, 960), interpolation=cv2.INTER_AREA)
 cv2.imwrite(path+filename2, res)
 imgE = Image.open(path+filename2)
 imgEH = ImageEnhance.Contrast(imgE)
 img1 = imgEH.enhance(2.8)
 gray1 = img1.convert("L")
 gary2 = gray1.filter(ImageFilter.DETAIL)
 gary3 = gary2.point(lambda i: i * 0.9)
 gary3.save(path+filename2)
################################主函数##################################
if __name__ == '__main__':
 path=u"c:/pic/"
 filename1="0.jpg"
 filename2="1.jpg"
 img_zip(path,filename1,filename2)
 time2 = time.time()
 print u'总共耗时:' + str(time2 - time1) + 's'

希望本文所述对大家Python程序设计有所帮助。

来源:https://blog.csdn.net/u013421629/article/details/76034225

标签:Python,opencv,图像压缩
0
投稿

猜你喜欢

  • Linux安装Python虚拟环境virtualenv的方法

    2022-07-07 00:33:36
  • python中__call__方法示例分析

    2023-01-16 04:31:31
  • face++与python实现人脸识别签到(考勤)功能

    2021-10-18 09:06:06
  • 编写Python脚本批量下载DesktopNexus壁纸的教程

    2022-05-27 01:17:38
  • 指定区域的图片自动按比例缩小的js代码(防止页面被图片撑破)

    2024-04-17 10:05:21
  • textarea 在IE和FF下换行无法正常显示的解决方法

    2022-09-11 01:33:40
  • Javascript优化技巧(文件瘦身篇)

    2024-04-22 13:04:16
  • Python随机函数库random的使用方法详解

    2021-06-07 16:16:23
  • Python 列表(List)操作方法详解

    2023-06-15 10:10:04
  • Oracle CBO 的 _sort_elimination_cost_ratio 参数

    2008-07-22 12:24:00
  • python中sleep函数用法实例分析

    2023-10-19 15:33:24
  • 微信小程序-拍照或选择图片并上传文件

    2023-09-04 20:22:45
  • 在Django中限制已登录用户的访问的方法

    2023-02-20 19:55:14
  • Go语言ORM包中使用worm构造查询条件的实例详解

    2024-05-21 10:18:19
  • cv2.getStructuringElement()函数及开、闭、腐蚀、膨胀原理讲解

    2023-08-24 23:07:23
  • django rest framework 数据的查找、过滤、排序的示例

    2023-07-18 16:33:39
  • Python Scrapy爬虫框架使用示例浅析

    2023-01-28 16:27:45
  • python 实现IP子网计算

    2022-04-24 20:27:37
  • MySQL运行报错:“Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggre”解决方法

    2024-01-15 17:25:21
  • Python打开文件、文件读写操作、with方式、文件常用函数实例分析

    2023-07-01 16:31:08
  • asp之家 网络编程 m.aspxhome.com