用python按照图像灰度值统计并筛选图片的操作(PIL,shutil,os)


Posted in Python onJune 04, 2020

我就废话不多说了,大家还是直接看代码吧!

import PIL.Image
import numpy
import os
import shutil
def sum_right(path):
 img = PIL.Image.open(path)
 array = numpy.array(img)
 num = array.sum(axis=0)
 print(type(num))
 res_left = 0
 res_right = 0
 for i in range(256,512):
  res_right += num[i]
 print(res_right)

if __name__ == '__main__':
 dir2 = r"C:\Users\Howsome\Desktop\tst"
 dir1 = r"C:\Users\Howsome\Desktop\AB"
 names = os.listdir(dir1)
 n = len(names)
 print("文件数量",n)
 res = 0
 average_5 = 25565356
 average_25 = 26409377
 average_5_right = 10006019
 #average_tmp = (average_25+average_5)//2
 count = 0
 #show(os.path.join(dir1, "uni4F6C.png"))
 for i in range(n):
  #取图片
  img = PIL.Image.open(os.path.join(dir1,names[i]))
  file = os.path.join(dir1,names[i])
  rmfile = os.path.join(dir2,names[i])
  array = numpy.array(img)
  num = array.sum(axis=0)
  res_right = 0
  for i in range(256, 512):
   res_right += num[i]
  average_5_right += res_right/n

  if res_right > average_5_right:
    shutil.copyfile(file, rmfile)
    os.remove(file)
    count += 1
 print(average_5_right)
 print(count)

补充知识:python遍历灰度图像像素方法总结

啥也不说了,看代码吧!

import numpy as np
import matplotlib.pyplot as plt
import cv2
import time

img = cv2.imread('lena.jpg',0)

# 以遍历每个像素取反为例

# 方法1
t1 = time.time()
img1 = np.copy(img)
rows,cols = img1.shape[:2]
for row in range(rows):
 for col in range(cols):
  img[row,col] = 255 - img[row,col]
t2 = time.time()
print('方法1所需时间:',t2-t1)

# 方法2
t3 = time.time()
img2 = np.copy(img)
rows,cols = img2.shape[:2]
img2 = img2.reshape(rows*cols)
# print(img2)
for i in range(rows*cols):
 img2[i] = 255-img2[i]
img2 = img2.reshape(rows,cols)
# print(img2)
t4 = time.time()
print('方法2所需时间:',t4-t3)

# 方法3
t5 = time.time()
img3 = np.copy(img)
# 使用多维迭代生成器
for (x,y), pixel in np.ndenumerate(img3):
 img3[x,y] = 255-pixel
t6 = time.time()
print('方法3所需时间:',t6-t5)

测试结果:

方法1所需时间: 0.14431977272033691
方法2所需时间: 0.13863205909729004
方法3所需时间: 0.24196243286132812

以上这篇用python按照图像灰度值统计并筛选图片的操作(PIL,shutil,os)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
有趣的python小程序分享
Dec 05 Python
在cmd命令行里进入和退出Python程序的方法
May 12 Python
Python使用progressbar模块实现的显示进度条功能
May 31 Python
python统计字母、空格、数字等字符个数的实例
Jun 29 Python
opencv python 基于KNN的手写体识别的实例
Aug 03 Python
python实现RabbitMQ的消息队列的示例代码
Nov 08 Python
python如何读取bin文件并下发串口
Jul 05 Python
python实现基于朴素贝叶斯的垃圾分类算法
Jul 09 Python
Flask框架实现的前端RSA加密与后端Python解密功能详解
Aug 13 Python
python模块导入的方法
Oct 24 Python
python线程信号量semaphore使用解析
Nov 30 Python
python 中的paramiko模块简介及安装过程
Feb 29 Python
Python flask框架实现浏览器点击自定义跳转页面
Jun 04 #Python
python 图像判断,清晰度(明暗),彩色与黑白实例
Jun 04 #Python
完美解决ARIMA模型中plot_acf画不出图的问题
Jun 04 #Python
Python使用Matlab命令过程解析
Jun 04 #Python
Python flask框架端口失效解决方案
Jun 04 #Python
Python实现列表中非负数保留,负数转化为指定的数值方式
Jun 04 #Python
Python新手学习装饰器
Jun 04 #Python
You might like
用PHP和MySQL保存和输出图片
2006/10/09 PHP
PHP 抓取网页图片并且另存为的实现代码
2010/03/24 PHP
php图片处理:加水印、缩略图的实现(自定义函数:watermark、thumbnail)
2010/12/02 PHP
php在文件指定行中写入代码的方法
2012/05/23 PHP
分享8个最佳的代码片段在线测试网站
2013/06/29 PHP
PHP的Socket网络编程入门指引
2015/08/11 PHP
mac系统下为 php 添加 pcntl 扩展
2016/08/28 PHP
详解PHP队列的实现
2019/03/14 PHP
PHP简单实现图片格式转换(jpg转png,gif转png等)
2019/10/30 PHP
一个页面元素appendchild追加到另一个页面元素的问题
2013/01/27 Javascript
点击隐藏页面左栏或右栏实现js代码
2013/04/01 Javascript
js自动生成对象的属性示例代码
2013/10/28 Javascript
js在IE与firefox的差异集锦
2014/11/11 Javascript
jQuery实现百度登录框的动态切换效果
2017/04/21 jQuery
如何使node也支持从url加载一个module详解
2018/06/05 Javascript
JS实现简单的抽奖转盘效果示例
2019/02/16 Javascript
ES6 Promise对象的应用实例分析
2019/06/27 Javascript
vue实现图片预览组件封装与使用
2019/07/13 Javascript
Python中使用Queue和Condition进行线程同步的方法
2016/01/19 Python
Python实现递归遍历文件夹并删除文件
2016/04/18 Python
实例解析Python的Twisted框架中Deferred对象的用法
2016/05/25 Python
Python的Flask框架及Nginx实现静态文件访问限制功能
2016/06/27 Python
Python基于生成器迭代实现的八皇后问题示例
2018/05/23 Python
通过python顺序修改文件名字的方法
2018/07/11 Python
Python 判断奇数偶数的方法
2018/12/20 Python
对python修改xml文件的节点值方法详解
2018/12/24 Python
使用Python向C语言的链接库传递数组、结构体、指针类型的数据
2019/01/29 Python
梅尔频率倒谱系数(mfcc)及Python实现
2019/06/18 Python
pytorch点乘与叉乘示例讲解
2019/12/27 Python
使用Python防止SQL注入攻击的实现示例
2020/05/21 Python
python logging 重复写日志问题解决办法详解
2020/08/04 Python
Django ModelForm组件原理及用法详解
2020/10/12 Python
JPA的优势都有哪些
2013/07/04 面试题
资产经营总监岗位职责
2013/12/04 职场文书
王兆力在市委党的群众路线教育实践活动总结大会上的讲话稿
2014/10/25 职场文书
2014年人事行政工作总结
2014/12/03 职场文书