侯体宗的博客
  • 首页
  • Hyperf版
  • beego仿版
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

使用python opencv对目录下图片进行去重的方法

Python  /  管理员 发布于 7年前   262

版本:

平台:ubuntu 14 / I5 / 4G内存

python版本:python2.7

opencv版本:2.13.4

依赖:

如果系统没有python,则需要进行安装

sudo apt-get install python

sudo apt-get install python-dev

sudo apt-get install python-pip

sudo pip install numpy mathplotlib

sudo apt-get install libcv-dev

sudo apt-get install python-opencv

使用感知哈希算法进行图片去重

原理:对每个文件进行遍历所有进行去重,因此图片越多速度越慢,但是可以节省手动操作

感知哈希原理:

1、需要比较的图片都缩放成8*8大小的灰度图

2、获得每个图片每个像素与平均值的比较,得到指纹

3、根据指纹计算汉明距离

5、如果得出的不同的元素小于5则为相同(相似?)的图片

#!/usr/bin/python# -*- coding: UTF-8 -*- import cv2import numpy as npimport os,sys,types 
def cmpandremove2(path): dirs = os.listdir(path) dirs.sort() if len(dirs) <= 0:  return dict={} for i in dirs:  prepath = path + "/" + i  preimg = cv2.imread(prepath)  if type(preimg) is types.NoneType:   continue  preresize = cv2.resize(preimg, (8,8))  pregray = cv2.cvtColor(preresize, cv2.COLOR_BGR2GRAY)  premean = cv2.mean(pregray)[0]  prearr = np.array(pregray.data)  for j in range(0,len(prearr)):   if prearr[j] >= premean:    prearr[j] = 1   else:    prearr[j] = 0  print "get", prepath  dict[i] = prearr dictkeys = dict.keys() dictkeys.sort() index = 0 while True:  if index >= len(dictkeys):   break  curkey = dictkeys[index]  dellist=[]  print curkey  index2 = index  while True:   if index2 >= len(dictkeys):    break   j = dictkeys[index2]   if curkey == j:    index2 = index2 + 1    continue   arr1 = dict[curkey]   arr2 = dict[j]   diff = 0   for k in range(0,len(arr2)):    if arr1[k] != arr2[k]:     diff = diff + 1   if diff <= 5:    dellist.append(j)   index2 = index2 + 1  if len(dellist) > 0:   for j in dellist:    file = path + "/" + j    print "remove", file    os.remove(file)    dict.pop(j)   dictkeys = dict.keys()   dictkeys.sort()  index = index + 1
def cmpandremove(path): index = 0 flag = 0 dirs = os.listdir(path) dirs.sort() if len(dirs) <= 0:  return 0 while True:  if index >= len(dirs):   break  prepath = path + dirs[index]  print prepath  index2 = 0  preimg = cv2.imread(prepath)  if type(preimg) is types.NoneType:   index = index + 1   continue  preresize = cv2.resize(preimg,(8,8))  pregray = cv2.cvtColor(preresize, cv2.COLOR_BGR2GRAY)  premean = cv2.mean(pregray)[0]  prearr = np.array(pregray.data)  for i in range(0,len(prearr)):   if prearr[i] >= premean:    prearr[i] = 1   else:    prearr[i] = 0  removepath = []  while True:   if index2 >= len(dirs):    break   if index2 != index:    curpath = path + dirs[index2]    #print curpath    curimg = cv2.imread(curpath)    if type(curimg) is types.NoneType:     index2 = index2 + 1     continue    curresize = cv2.resize(curimg, (8,8))    curgray = cv2.cvtColor(curresize, cv2.COLOR_BGR2GRAY)    curmean = cv2.mean(curgray)[0]    curarr = np.array(curgray.data)    for i in range(0,len(curarr)):     if curarr[i] >= curmean:      curarr[i] = 1     else:      curarr[i] = 0    diff = 0    for i in range(0,len(curarr)):     if curarr[i] != prearr[i] :      diff = diff + 1    if diff <= 5:     print 'the same'     removepath.append(curpath)     flag = 1   index2 = index2 + 1  index = index + 1  if len(removepath) > 0:   for file in removepath:    print "remove", file    os.remove(file)   dirs = os.listdir(path)   dirs.sort()   if len(dirs) <= 0:    return 0   #index = 0 return flag  def main(argv): if len(argv) <= 1:  print "command error"  return -1 if os.path.exists(argv[1]) is False:  return -1 path = argv[1] ''' while True:  if cmpandremove(path) == 0:   break ''' cmpandremove(path) return 0   if __name__ == '__main__': main(sys.argv)

为了节省操作,遍历所有目录,把想要去重的目录遍历一遍

#!/bin/bashindir=$1addcount=0function intest(){  for file in $1/* do  echo $file  if test -d $file   then   ~/similar.py $file/   intest $file  fi done}intest $indir

以上这篇使用python opencv对目录下图片进行去重的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。


  • 上一条:
    Python构建图像分类识别器的方法
    下一条:
    python变量赋值方法(可变与不可变)
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • 在python语言中Flask框架的学习及简单功能示例(0个评论)
    • 在Python语言中实现GUI全屏倒计时代码示例(0个评论)
    • Python + zipfile库实现zip文件解压自动化脚本示例(0个评论)
    • python爬虫BeautifulSoup快速抓取网站图片(1个评论)
    • vscode 配置 python3开发环境的方法(0个评论)
    • 近期文章
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(0个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 欧盟关于强迫劳动的规定的官方举报渠道及官方举报网站(0个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf文件功能(0个评论)
    • Laravel从Accel获得5700万美元A轮融资(0个评论)
    • 在go + gin中gorm实现指定搜索/区间搜索分页列表功能接口实例(0个评论)
    • 在go语言中实现IP/CIDR的ip和netmask互转及IP段形式互转及ip是否存在IP/CIDR(0个评论)
    • PHP 8.4 Alpha 1现已发布!(0个评论)
    • Laravel 11.15版本发布 - Eloquent Builder中添加的泛型(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2016-11
    • 2018-04
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2022-01
    • 2023-07
    • 2023-10
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客