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使用fastapi实现多语言国际化的操作指南

《python使用fastapi实现多语言国际化的操作指南》本文介绍了使用Python和FastAPI实现多语言国际化的操作指南,包括多语言架构技术栈、翻译管理、前端本地化、语言切换机制以及常见陷阱和... 目录多语言国际化实现指南项目多语言架构技术栈目录结构翻译工作流1. 翻译数据存储2. 翻译生成脚本

如何通过Python实现一个消息队列

《如何通过Python实现一个消息队列》这篇文章主要为大家详细介绍了如何通过Python实现一个简单的消息队列,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录如何通过 python 实现消息队列如何把 http 请求放在队列中执行1. 使用 queue.Queue 和 reque

Python如何实现PDF隐私信息检测

《Python如何实现PDF隐私信息检测》随着越来越多的个人信息以电子形式存储和传输,确保这些信息的安全至关重要,本文将介绍如何使用Python检测PDF文件中的隐私信息,需要的可以参考下... 目录项目背景技术栈代码解析功能说明运行结php果在当今,数据隐私保护变得尤为重要。随着越来越多的个人信息以电子形

使用Python快速实现链接转word文档

《使用Python快速实现链接转word文档》这篇文章主要为大家详细介绍了如何使用Python快速实现链接转word文档功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 演示代码展示from newspaper import Articlefrom docx import

Python Jupyter Notebook导包报错问题及解决

《PythonJupyterNotebook导包报错问题及解决》在conda环境中安装包后,JupyterNotebook导入时出现ImportError,可能是由于包版本不对应或版本太高,解决方... 目录问题解决方法重新安装Jupyter NoteBook 更改Kernel总结问题在conda上安装了

Python如何计算两个不同类型列表的相似度

《Python如何计算两个不同类型列表的相似度》在编程中,经常需要比较两个列表的相似度,尤其是当这两个列表包含不同类型的元素时,下面小编就来讲讲如何使用Python计算两个不同类型列表的相似度吧... 目录摘要引言数字类型相似度欧几里得距离曼哈顿距离字符串类型相似度Levenshtein距离Jaccard相

Python安装时常见报错以及解决方案

《Python安装时常见报错以及解决方案》:本文主要介绍在安装Python、配置环境变量、使用pip以及运行Python脚本时常见的错误及其解决方案,文中介绍的非常详细,需要的朋友可以参考下... 目录一、安装 python 时常见报错及解决方案(一)安装包下载失败(二)权限不足二、配置环境变量时常见报错及

Python中顺序结构和循环结构示例代码

《Python中顺序结构和循环结构示例代码》:本文主要介绍Python中的条件语句和循环语句,条件语句用于根据条件执行不同的代码块,循环语句用于重复执行一段代码,文章还详细说明了range函数的使... 目录一、条件语句(1)条件语句的定义(2)条件语句的语法(a)单分支 if(b)双分支 if-else(

Python itertools中accumulate函数用法及使用运用详细讲解

《Pythonitertools中accumulate函数用法及使用运用详细讲解》:本文主要介绍Python的itertools库中的accumulate函数,该函数可以计算累积和或通过指定函数... 目录1.1前言:1.2定义:1.3衍生用法:1.3Leetcode的实际运用:总结 1.1前言:本文将详

Java深度学习库DJL实现Python的NumPy方式

《Java深度学习库DJL实现Python的NumPy方式》本文介绍了DJL库的背景和基本功能,包括NDArray的创建、数学运算、数据获取和设置等,同时,还展示了如何使用NDArray进行数据预处理... 目录1 NDArray 的背景介绍1.1 架构2 JavaDJL使用2.1 安装DJL2.2 基本操