python 去除 txt 文件中,周围检测框的重复框

2024-04-27 18:58

本文主要是介绍python 去除 txt 文件中,周围检测框的重复框,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

去重 CV 检测框的 50 pix 像素值内的重复框:
如果缺陷类型一样,有重复框则取检测分数最大的框;
如果缺陷类型不一致,则保留两个框;
思想:

  1. 先找到每一个缺陷的几何中心 50 pix 内的所有框;
  2. 按照框进行缺陷类型分组:做去重处理;
  3. 删除位于同一范围内的缺陷;
  4. 合并小于 50 像素值和大于 50 pix 的框;

用法:依赖以下 3 个方法,直接调用第 3 个方法 remove_duplicate(txt_path, nearby_pix)
输出是去重后的生成 txt 。原始 txt 格式如下:
id 名称,x, y,w, h, 检测分数,缺陷类型,时间
在这里插入图片描述

# txt to df and select the max score
def choose_only_one(nearby_list, defect_list_):df_nearby = pd.DataFrame()id_list = []x_list = []y_list = []w_list = []h_list = []score_list = []defect_list = []time_list = []for ele_nearby in nearby_list:ele_nearby = ele_nearby.split(',')id_list.append(ele_nearby[0])x_list.append(ele_nearby[1])y_list.append(ele_nearby[2])w_list.append(ele_nearby[3])h_list.append(ele_nearby[4])score_list.append(ele_nearby[5])defect_list.append(ele_nearby[6])time_list.append(ele_nearby[7][:-1])# time_list.append(ele_nearby[7])df_nearby['id'] = id_listdf_nearby['x'] = x_listdf_nearby['y'] = y_listdf_nearby['w'] = w_listdf_nearby['h'] = h_listdf_nearby['score'] = score_listdf_nearby['defect'] = defect_listdf_nearby['date'] = time_listresult_list = []df_result = pd.DataFrame()for ele_defect in defect_list_:df_nearby_temp = df_nearby[df_nearby['defect']==str(ele_defect)]df_nearby_max = df_nearby_temp[df_nearby_temp['score'] == np.max(df_nearby_temp['score'])]# result_list.append(df_nearby_max)df_result = pd.concat([df_result, df_nearby_max], axis=0)return df_resultdef txt_to_df(nearby_list):df_nearby = pd.DataFrame()id_list = []x_list = []y_list = []w_list = []h_list = []score_list = []defect_list = []time_list = []for ele_nearby in nearby_list:ele_nearby = ele_nearby.split(',')id_list.append(ele_nearby[0])x_list.append(ele_nearby[1])y_list.append(ele_nearby[2])w_list.append(ele_nearby[3])h_list.append(ele_nearby[4])score_list.append(ele_nearby[5])defect_list.append(ele_nearby[6])time_list.append(ele_nearby[7][:-1])# time_list.append(ele_nearby[7])df_nearby['id'] = id_listdf_nearby['x'] = x_listdf_nearby['y'] = y_listdf_nearby['w'] = w_listdf_nearby['h'] = h_listdf_nearby['score'] = score_listdf_nearby['defect'] = defect_listdf_nearby['date'] = time_listreturn df_nearby# remove dumplicate jiaoji txt
def remove_duplicate(txt_path, nearby_pix):
'''
txt_path : txt 文件的路径
nearby_pix : 邻近范围的像素值
'''work_dir = './factory_result_dashboard_txt/'if(not os.path.exists(work_dir)):os.makedirs(work_dir)f1=open(txt_path,'r')f1_1 = open(txt_path, 'r').read()if(len(f1_1)<=10):if(os.path.exists(txt_path)):shutil.copy(txt_path, work_dir)lines_1_list = list(set(f1.readlines()))lines_2_list = copy.deepcopy(lines_1_list)single_defect_list = []df_single_defect = pd.DataFrame()# single_defect_list_1 = []for line_1 in lines_1_list:line_1_ele = line_1.split(',')line_1_x = float(line_1_ele[1])line_1_y = float(line_1_ele[2])line_1_w = float(line_1_ele[3])line_1_h = float(line_1_ele[4])line_1_score = float(line_1_ele[5])line_1_defect = float(line_1_ele[6])line_1_centre_x = line_1_x + line_1_w // 2line_1_centre_y = line_1_y + line_1_h // 2nearby_list = []defect_list = []for line_2 in lines_2_list:line_2_ele = line_2.split(',')line_2_x = float(line_2_ele[1])line_2_y = float(line_2_ele[2])line_2_w = float(line_2_ele[3])line_2_h = float(line_2_ele[4])line_2_score = float(line_2_ele[5])line_2_defect = float(line_2_ele[6])line_2_centre_x = line_2_x + line_2_w // 2line_2_centre_y = line_2_y + line_2_h // 2if(line_1==line_2):continue# if(line_1 in single_defect_list):#     breakdis = np.sqrt(math.pow(abs(line_1_centre_x - line_2_centre_x), 2) + math.pow(abs(line_1_centre_y - line_2_centre_y), 2))nearby_pix = float(nearby_pix)if(dis <= nearby_pix):if(line_1 not in nearby_list):nearby_list.append(line_1)defect_list.append(line_1_defect)if(line_2 not in nearby_list):nearby_list.append(line_2)defect_list.append(line_2_defect)defect_list = list(set(defect_list))defect_list = map(int, defect_list)df_res = choose_only_one(nearby_list, defect_list) # select only one defect# single_defect_list.extend(df_res)df_single_defect = pd.concat([df_single_defect, df_res], axis=0)nearby_list = map(str, nearby_list)for ele_nearby in nearby_list:lines_1_list.remove(ele_nearby)df_lines_1 = txt_to_df(lines_1_list)df_single_defect = pd.concat([df_single_defect, df_lines_1], axis=0)df_single_defect = df_single_defect.drop_duplicates()# df_single_defect = df_single_defect.drop([0])df_single_defect.to_csv(work_dir + txt_path, sep=',', header=None, index=False)

这篇关于python 去除 txt 文件中,周围检测框的重复框的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/941273

相关文章

使用Python绘制蛇年春节祝福艺术图

《使用Python绘制蛇年春节祝福艺术图》:本文主要介绍如何使用Python的Matplotlib库绘制一幅富有创意的“蛇年有福”艺术图,这幅图结合了数字,蛇形,花朵等装饰,需要的可以参考下... 目录1. 绘图的基本概念2. 准备工作3. 实现代码解析3.1 设置绘图画布3.2 绘制数字“2025”3.3

python使用watchdog实现文件资源监控

《python使用watchdog实现文件资源监控》watchdog支持跨平台文件资源监控,可以检测指定文件夹下文件及文件夹变动,下面我们来看看Python如何使用watchdog实现文件资源监控吧... python文件监控库watchdogs简介随着Python在各种应用领域中的广泛使用,其生态环境也

Python中构建终端应用界面利器Blessed模块的使用

《Python中构建终端应用界面利器Blessed模块的使用》Blessed库作为一个轻量级且功能强大的解决方案,开始在开发者中赢得口碑,今天,我们就一起来探索一下它是如何让终端UI开发变得轻松而高... 目录一、安装与配置:简单、快速、无障碍二、基本功能:从彩色文本到动态交互1. 显示基本内容2. 创建链

Java调用Python代码的几种方法小结

《Java调用Python代码的几种方法小结》Python语言有丰富的系统管理、数据处理、统计类软件包,因此从java应用中调用Python代码的需求很常见、实用,本文介绍几种方法从java调用Pyt... 目录引言Java core使用ProcessBuilder使用Java脚本引擎总结引言python

python 字典d[k]中key不存在的解决方案

《python字典d[k]中key不存在的解决方案》本文主要介绍了在Python中处理字典键不存在时获取默认值的两种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录defaultdict:处理找不到的键的一个选择特殊方法__missing__有时候为了方便起见,

使用Python绘制可爱的招财猫

《使用Python绘制可爱的招财猫》招财猫,也被称为“幸运猫”,是一种象征财富和好运的吉祥物,经常出现在亚洲文化的商店、餐厅和家庭中,今天,我将带你用Python和matplotlib库从零开始绘制一... 目录1. 为什么选择用 python 绘制?2. 绘图的基本概念3. 实现代码解析3.1 设置绘图画

Python pyinstaller实现图形化打包工具

《Pythonpyinstaller实现图形化打包工具》:本文主要介绍一个使用PythonPYQT5制作的关于pyinstaller打包工具,代替传统的cmd黑窗口模式打包页面,实现更快捷方便的... 目录1.简介2.运行效果3.相关源码1.简介一个使用python PYQT5制作的关于pyinstall

使用Python实现大文件切片上传及断点续传的方法

《使用Python实现大文件切片上传及断点续传的方法》本文介绍了使用Python实现大文件切片上传及断点续传的方法,包括功能模块划分(获取上传文件接口状态、临时文件夹状态信息、切片上传、切片合并)、整... 目录概要整体架构流程技术细节获取上传文件状态接口获取临时文件夹状态信息接口切片上传功能文件合并功能小

python实现自动登录12306自动抢票功能

《python实现自动登录12306自动抢票功能》随着互联网技术的发展,越来越多的人选择通过网络平台购票,特别是在中国,12306作为官方火车票预订平台,承担了巨大的访问量,对于热门线路或者节假日出行... 目录一、遇到的问题?二、改进三、进阶–展望总结一、遇到的问题?1.url-正确的表头:就是首先ur

基于Python实现PDF动画翻页效果的阅读器

《基于Python实现PDF动画翻页效果的阅读器》在这篇博客中,我们将深入分析一个基于wxPython实现的PDF阅读器程序,该程序支持加载PDF文件并显示页面内容,同时支持页面切换动画效果,文中有详... 目录全部代码代码结构初始化 UI 界面加载 PDF 文件显示 PDF 页面页面切换动画运行效果总结主