【深度学习】yolov8 seg实例分割训练,交通灯

文章目录

  • 一、类别定义
  • 二、标注后再清洗数据
  • 三、训练yolov8 seg
  • 四、部署
  • 五、代码资料

一、类别定义

类别0:

在这里插入图片描述

类别1:

在这里插入图片描述
类别2:

在这里插入图片描述

类别3:

在这里插入图片描述

类别4:

在这里插入图片描述
类别5:
在这里插入图片描述

类别6:

在这里插入图片描述

类别7:

在这里插入图片描述

二、标注后再清洗数据

删除没有标签json的图:

import os
import json# Define the source directory containing the images and JSON files
src = r"G:\honglvdeng\images\xuanze_copy"# List all files in the source directory
files = os.listdir(src)# Separate image files and JSON files
image_files = [f for f in files if f.lower().endswith(('.png', '.jpg', '.jpeg', '.bmp', '.gif'))]
json_files = [f for f in files if f.lower().endswith('.json')]# Create a set of base names of JSON files (without extension)
json_base_names = set(os.path.splitext(f)[0] for f in json_files)# Iterate over the image files
for image_file in image_files:# Get the base name of the image file (without extension)base_name = os.path.splitext(image_file)[0]# Check if the corresponding JSON file existsif base_name not in json_base_names:# If not, delete the image fileimage_path = os.path.join(src, image_file)os.remove(image_path)print(f"Deleted image without annotation: {image_path}")

将圆形标签json转为txt yolo seg 多边形标签:

import os
import json
import mathdef circle_to_polygon(center, radius, num_points=40):"""Convert a circle to a polygon with a given number of points."""points = []for i in range(num_points):angle = 2 * math.pi * i / num_pointsx = center[0] + radius * math.cos(angle)y = center[1] + radius * math.sin(angle)points.append((x, y))return pointsdef convert_json_to_yolov8_format(json_file_path, output_dir):"""Convert a JSON file to YOLOv8 segmentation format."""with open(json_file_path, 'r') as f:data = json.load(f)shapes = data.get('shapes', [])image_path = data.get('imagePath', '')image_height = data.get('imageHeight', 0)image_width = data.get('imageWidth', 0)yolov8_data = []for shape in shapes:if shape['shape_type'] == 'circle':center = shape['points'][0]edge = shape['points'][1]radius = math.sqrt((center[0] - edge[0]) ** 2 + (center[1] - edge[1]) ** 2)polygon_points = circle_to_polygon(center, radius)normalized_polygon_points = [(x / image_width, y / image_height) for x, y in polygon_points]yolov8_data.append({"label": shape['label'],"points": normalized_polygon_points})output_file_path = os.path.join(output_dir, os.path.splitext(os.path.basename(json_file_path))[0] + '.txt')with open(output_file_path, 'w') as f:for item in yolov8_data:label = item['label']points = ' '.join([f"{round(x, 6)} {round(y, 6)}" for x, y in item['points']])f.write(f"{label} {points}\n")def process_directory(src):"""Process all JSON files in the given directory."""for file_name in os.listdir(src):if file_name.endswith('.json'):json_file_path = os.path.join(src, file_name)convert_json_to_yolov8_format(json_file_path, src)# Define the source directory containing the images and JSON files
src = r"G:\honglvdeng\images\xuanze_copy"
process_directory(src)

转移到新的数据集文件夹:

import os
import json
import mathimport os
import json
import shutil# Define the source directory containing the images and JSON files
src = r"G:\honglvdeng\images\xuanze_copy"
dst = r"G:\honglvdeng\images\xuanze_copy_yolo_seg_datasets"
os.makedirs(dst, exist_ok=True)files = os.listdir(src)
image_files = [f for f in files if f.lower().endswith(('.png', '.jpg', '.jpeg', '.bmp', '.gif'))]
img_dst = os.path.join(dst, "images")
os.makedirs(img_dst, exist_ok=True)
for image_file in image_files:image_path = os.path.join(src, image_file)shutil.copy(image_path, img_dst)json_files = [f for f in files if f.lower().endswith('.txt')]
json_dst = os.path.join(dst, "labels")
os.makedirs(json_dst, exist_ok=True)
for json_file in json_files:json_path = os.path.join(src, json_file)shutil.copy(json_path, json_dst)

三、训练yolov8 seg

train.py

from ultralytics import YOLO# Load a model
model = YOLO("yolov8n-seg.pt")  # load a pretrained model (recommended for training)# Train the model with 2 GPUs
results = model.train(data="hld-seg.yaml", epochs=100, imgsz=640, device=[0, 1, 2, 3], batch=16)

训练开启:

python -m torch.distributed.run --nproc_per_node 4 x05_train.py

训练结束:

在这里插入图片描述

四、部署

对摄像头实时画面进行分割:

在这里插入图片描述

五、代码资料

下载所有资料:

链接:https://pan.baidu.com/s/1NtLgkmRfoCCqDD5axi-HRw?pwd=78xw 
提取码:78xw 

在这里插入图片描述
在这里插入图片描述

帮助:

https://docs.qq.com/sheet/DUEdqZ2lmbmR6UVdU?tab=BB08J2

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/840964.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

同名在线查询系统微信小程序源码下载支持多种流量主,附带系统教程

同名在线查询系统微信小程序源码下载支持多种流量主这是一款支持查询同名的一款微信小程序 该款小程序支持多种查询模式 重名查询,热度查询,概率香查询 源码免费下载地址抄笔记(chaobiji.cn)

Cisco ASA防火墙抓包命令Capture

在日常运维中,遇到故障时经常需要在ASA上抓包进行诊断。 从抓包中可以看到流量是否经过ASA流量是否被ASA放行,或block,匹配的哪一条ACL capture在Firepower平台上同样适用,无论跑的是ASA还是FTD 1 抓包命令 capture 2 配置方…

Keras深度学习框架第二十讲:使用KerasCV中的Stable Diffusion进行高性能图像生成

1、绪论 1.1 概念 为便于后文讨论,首先进行相关概念的陈述。 Stable Diffusion:Stable Diffusion 是一个在图像生成领域广泛使用的技术,尤其是用于文本到图像的转换。它基于扩散模型(Diffusion Models),这…

Aiseesoft iPhone Unlocker for Mac激活版:一键解锁工具

在数字时代,手机解锁问题时常困扰着我们。Aiseesoft iPhone Unlocker for Mac作为一款专为Mac用户打造的解锁工具,以其简洁易用的界面和强大的功能,成为了解决iPhone解锁问题的最佳选择。 Aiseesoft iPhone Unlocker for Mac激活版下载 Aisee…

Flutter 中的 PopupMenuDivider 小部件:全面指南

Flutter 中的 PopupMenuDivider 小部件:全面指南 在Flutter中,PopupMenuDivider是一个辅助类,用于在PopupMenuItem之间添加分隔线,从而增强下拉菜单的可读性和用户界面的整洁度。PopupMenuDivider通常与PopupMenuButton和PopupMe…

uml 顺序图 交叉分片

在UML序列图中,交叉分片(interleaving)是指并发执行的两个或多个交互在时间上是分散的,即它们在时间上可以交叉。这通常用于描述并发线程或进程。 交叉分片不涉及具体的代码实现,它是一种用于描述并发行为的UML构造。…

redisson 使用fastJson2序列化

前因:一个项目:有人用redisTemplete存数据(使用了fastjson2),使用redisson取的时候就会报错。要让redisTemplete与redisson序列化一致 一、自定义序列化器 import com.alibaba.fastjson2.JSON; import com.alibaba.fa…

Mybatis-Plus笔记

1.MP基础 1.1 MP常见注解 TableName(“指定表明”) TableName("tb_user") // 指定表名 Data NoArgsConstructor AllArgsConstructor Builder public class User {private Long id;private String userName;private String password;private String name;private I…

北美码农面试流程,北美码农面试经验

听说有人还不知道OA是什么?HR电联跟Tech phone interview什么区别?Onsite interview有哪些关键点具体考些什么不清楚?下面为大家分享北美码农面试流程。 SDE面试流程主要包含: Online assessment HR contact email/phone Tech…

面试回答——有高并发、高性能、高可用系统架构设计实践以及性能调优经验

🌈hello,你好鸭,我是Ethan,一名不断学习的码农,很高兴你能来阅读。 ✔️目前博客主要更新Java系列、项目案例、计算机必学四件套等。 🏃人生之义,在于追求,不在成败,勤通…

JVM学习-堆空间(三)

JVM在进行GC时,并非每次都对新生代、老年代、方法区(元空间)三个区域一起回收,大部分时间回收的都是新生代 针对Hotspot VM的实现,它里面的GC按照回收区域分两大类型:一种是部分收集(Partial GC),一种是整堆收集(Full …

singularity与docker区别

参考: https://statics.scnu.edu.cn/pics/iqm/2023/0926/1695693821366210.pdf https://hpc.pku.edu.cn/ug/guide/soft/singularity/ https://blog.csdn.net/weixin_44616693/article/details/131341744

Mysql之InnoDB索引

1.索引简介 官网介绍:MySQL :: MySQL 8.0 Reference Manual :: 10.3.1 How MySQL Uses Indexes 索引用于快速查找具有特定列值的行。如果没有索引, MySQL 必须从第一行开始,然后读取整个表以找到相关的行。表越大,花费就越多。如果表中有相关…

「大数据」Lambda架构

Lambda架构是一种用于处理大数据的架构,它由Twitter的前工程师Nathan Marz提出。Lambda架构的核心思想是将数据系统分为三个层次,以实现高容错性、低延迟和可扩展性。以下是Lambda架构的详细描述: 核心功能: 批处理层(Batch Layer):负责存储和管理主数据集,预先批处理计…

一些python代码基础

1、将输入转化为list sublist list(map(int, input().split())) 注:map(int, input().split()) 的结果是一个 map 对象,它是一个迭代器。在这个例子中,map 函数将 input().split() 返回的列表中的每个元素都转换为整数类型,但这…

【C++算法】BFS解决单源最短路问题相关经典算法题

1.迷宫中离入口最近的出口 首先我们可以将这道题目简化一下,可以往我们这一章的主题上面来想想。 我们利层序遍历来解决最短路径问题,是最经典的做法。我们可以从起点开始层序遍历, 并组在遍历的过程中记录当前遍历的层数。这样就能在找到出口的时候&…

Alpine服务管理

Alpine服务管理 安装rc-service服务rc添加自定义服务rc管理服务服务开机自启 Alpine安装sshd重启sshd服务 安装rc-service服务 Alpine使用的是OpenRCinit系统,而rc-service是openrc的一部分 # 安装openrc apk add openrc --no-cacherc添加自定义服务 # 编辑自定义…

k8s遇到的错误记录

时隔四年有开始重新鼓捣k8s了,重新安装后遇到的错误记录如下: Error: Package: kubelet-1.14.0-0.x86_64 (kubernetes) Requires: kubernetes-cni 0.7.5 Available: kubernetes-cni-0.3.0.1-0.07a8a2.x86_64 (kubernetes) …

【zotero6】ZotCard笔记模板分享

zotcard插件下载链接:传送门 因为zotero出了新的zotero7,现在下载插件会出现zotero6和zotero7不兼容的情况,通过这个链接可以区分适配不同版本的插件。 下载后点击工具的附加组件 然后选择通过文件添加 就可以添加插件了 再通过 工具->…

F.费用报销【蓝桥杯】/01背包

费用报销 01背包 思路&#xff1a;f[i][j]表示前i个票据在容量为j的背包中能占的最大值。 #include<iostream> #include<algorithm> using namespace std; int day[13]{0,31,28,31,30,31,30,31,31,30,31,30,31}; int dp[1005][5005]; int s[13]; int last[1005];…