记录第一次跑YOLOV8做目标检测

今天是24年的最后一天,终于要向新世界开始破门了,开始深度学习,YOLO来敲门~

最近做了一些皮肤检测的功能,在传统的处理中经历了反复挣扎,终于要上YOLO了。听过、看过,不如上手体会过~
1、YOLO是什么?

看了GPT的回答,首次上手的人还是不太懂,只知道从2016年出第一版到现在已经过多轮迭代更新了,是很成熟的框架,可以放心大胆用。在做目标检测方面,杠杠的。特别是对于特征一致性相对较好的不大不小需求,绝了。安全帽、头盔、口罩检测已经是典型应用了。



2、开启YOLOv8框架

为什么是v8,这个还是源于大佬的经验,小白都是先模仿。也因为我的皮肤检测属于小型检测目标。
(1)准备数据文件夹dataset(数据用来建立模型)
images:图片文件夹里面有两个文件夹,分别放了训练图片原图(80%)和用作测试的图片(20%)
labels:标注文件夹,里面放置了训练和测试图片文件夹对应的标注文件,格式是txt。

标注文件:就是采用标注软件对图片中需要识别的目标进行标签化的结果文件。

标注很重要,需要尽量圈出自己的目标前景,且保持多帧间的一致性和稳定性。

常用又好用的标注软件是Labelme 和LabelImg。我挺喜欢Labelme 的,有很多个版本,还有windows可以直接运行的Labelme.exe。总之不用编码直接使用,方便,好get。需要注意的是,Labelme的输出是jason文档,为了顺利转成满足YOLO输入的格式,需要将jason转成txt(后面有给出可运行的代码)。

Labelme.exe我已经上传资源文档了:windows可以直接使用的labelme.exe




注意:标注是需要提前做好的,且images 和labels 两个文件夹中的训练和测试的数据应保持匹配和对应关系。

(2)在python编辑器中用代码建立模型并推理计算

先安装好YOLO包(默认已安装好python及常用依赖库,如CV)

训练代码 train.py

bash 复制代码
from ultralytics import YOLO

# 初始化 YOLO 模型
model = YOLO("yolov8n.pt")  # 使用预训练的 YOLOv8 nano 模型

# 训练模型
model.train(
    data="E:/skin_data/spot_dataset/dataset.yaml",  # 数据配置文件路径
    epochs=60,                   # 训练轮数
    imgsz=640,                  # 输入图片尺寸
    batch=16,                     # 批次大小,根据显存大小调整
    name="spot_detection60"        # 保存运行结果的名称
)

推测代码

bash 复制代码
from ultralytics import YOLO

#加载已经训练好的模型
trained_model = YOLO("E:/skin_yolo/runs/detect/spot_detection60/weights/best.pt")  # 加载最优权重

#进行推理测试
results = trained_model.predict(
source="E:/skin_data/spot_dataset/images/val",  # 推理图片的路径(支持文件夹、单个图片、视频等)
    conf=0.5,                     # 置信度阈值
    save=True,                    # 保存结果到运行目录
    save_txt=True,                # 保存结果到文本文件
     imgsz=640                    # 推理图片尺寸
 )
#输出推理结果
print(results)

觉着标注框和注释太粗大了,那么修改一下推测:

bash 复制代码
from ultralytics import YOLO
import cv2
import os

# Load the trained YOLO model
trained_model = YOLO("E:/skin_yolo/runs/detect/spot_detection60/weights/best.pt")

# Define directories
input_dir = "E:/skin_data/spot_dataset/images/val/"  # Directory containing images to infer
output_dir = "E:/skin_yolo/runs/detect/result2/"  # Directory to save inference results
os.makedirs(output_dir, exist_ok=True)  # Create output directory if it doesn't exist

# Custom settings for bounding boxes
box_color = (0, 255, 0)  # Green color for the bounding box
line_thickness = 1       # Thickness of the bounding box lines

# Iterate through all images in the input directory
for filename in os.listdir(input_dir):
    # Process only image files
    if filename.endswith(('.jpg', '.jpeg', '.png', '.bmp')):
        image_path = os.path.join(input_dir, filename)

        # Run inference
        results = trained_model.predict(source=image_path, conf=0.3, save=False)

        # Get the first (and usually only) result
        result = results[0]  # Access the first result in the list

        # Get the original image from the result
        img = result.orig_img

        # Accessing the detection boxes and labels
        boxes = result.boxes  # This contains the detection boxes
        class_ids = boxes.cls  # Class indices for each box
        confidences = boxes.conf  # Confidence scores for each detection

        # Draw bounding boxes on the image
        for i in range(len(boxes)):
            # Get the coordinates of the box (x1, y1, x2, y2) from xyxy format
            x1, y1, x2, y2 = boxes.xyxy[i].int().tolist()  # Convert tensor to list of integers

            # Draw the bounding box
            cv2.rectangle(img, (x1, y1), (x2, y2), box_color, line_thickness)

            # Get the label (class name) and confidence
            label = f"{trained_model.names[int(class_ids[i])]} {confidences[i]:.2f}"

            # Put the label on the image
            #cv2.putText(img, label, (x1, y1 - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, box_color, 2)

        # Save the result image
        result_image_path = os.path.join(output_dir, f"result_{filename}")
        cv2.imwrite(result_image_path, img)  # Save image with bounding boxes
        print(f"Saved result for {filename} at {result_image_path}")

print("Inference for all images in the folder is complete.")

show一张处理结果:我的"目标橙"都检测到了~

(3)涉及的代码附件

jason2txt

bash 复制代码
import os
import json

# 类别名称与ID的映射
classes = ["ix"]  # 根据你的类别修改

def convert_labelme_to_yolo(json_dir, output_dir):
    os.makedirs(output_dir, exist_ok=True)

    for file in os.listdir(json_dir):
        if not file.endswith('.json'):
            continue

        # 读取 JSON 文件
        json_path = os.path.join(json_dir, file)
        with open(json_path, 'r', encoding='utf-8') as f:
            data = json.load(f)

        # 调试输出,检查 JSON 数据结构
        print(f"正在处理文件: {file}")
        print(f"JSON 数据: {data}")

        image_width = data.get('imageWidth', 0)
        image_height = data.get('imageHeight', 0)

        # 检查图像尺寸
        print(f"图像宽度: {image_width}, 图像高度: {image_height}")
        if image_width == 0 or image_height == 0:
            print(f"错误:图像尺寸信息丢失: {file}")
            continue

        yolo_labels = []
        for shape in data['shapes']:
            label = shape['label']
            if label not in classes:
                print(f"未识别的类别: {label}, 请在 classes 中添加该类别。")
                continue

            # 获取类别 ID
            class_id = classes.index(label)

            # 解析边界框的点
            points = shape['points']
            print(f"标注类型: {label}, 标注坐标: {points}")

            if len(points) < 2:  # 如果不是矩形框,可能需要其他处理
                print(f"警告:{file} 中的标注无效,跳过。")
                continue

            x_min, y_min = points[0]
            x_max, y_max = points[1]

            # 计算 YOLO 格式的中心点和宽高(归一化)
            x_center = (x_min + x_max) / 2 / image_width
            y_center = (y_min + y_max) / 2 / image_height
            width = (x_max - x_min) / image_width
            height = (y_max - y_min) / image_height

            yolo_labels.append(f"{class_id} {x_center:.6f} {y_center:.6f} {width:.6f} {height:.6f}")

        # 检查是否有标注数据
        if not yolo_labels:
            print(f"警告:文件 {file} 没有有效的标注数据。")
            continue

        # 保存到 YOLO 格式的 .txt 文件
        output_file = os.path.join(output_dir, file.replace('.json', '.txt'))
        with open(output_file, 'w') as f:
            f.write("\n".join(yolo_labels))
        print(f"已生成: {output_file}")


# 使用示例
json_dir = "E:/skin_data/json/"  # Labelme JSON 文件路径
output_dir = "E:/skin_data/yolo_labels/"  # YOLO 格式标注文件保存路径
convert_labelme_to_yolo(json_dir, output_dir)

输入图像具有多样性,而标注输出则具有一定的相似性。一般标注的图像输出文件数是小于参与标注输入图像数目的(输入图像中有混入无目标的图像),所以可能需要基于标注完的jason文件数目来反选出适合接入训练的数据。

copypic2dest.py

bash 复制代码
import os
import shutil

def copy_images_from_json(json_folder, image_folder, target_folder, image_extension=".jpg"):
    # 创建目标文件夹,如果不存在的话
    os.makedirs(target_folder, exist_ok=True)

    # 遍历 JSON 文件夹中的所有 .json 文件
    for json_file in os.listdir(json_folder):
        if json_file.endswith(".json"):
            # 获取不带扩展名的文件名
            file_name_without_extension = os.path.splitext(json_file)[0]

            # 查找对应的图片文件(假设图片扩展名为 .jpg 或其他格式)
            image_file = file_name_without_extension + image_extension
            image_path = os.path.join(image_folder, image_file)

            # 检查图片文件是否存在
            if os.path.exists(image_path):
                # 复制图片到目标文件夹
                target_image_path = os.path.join(target_folder, image_file)
                shutil.copy(image_path, target_image_path)
                print(f"已复制图片: {image_file} 到目标路径")
            else:
                print(f"未找到对应的图片: {image_file}")


# 使用示例
json_folder = "E:/skin_data/json/"  # JSON 文件所在的文件夹
image_folder = "E:/skin_data/pic/"  # 所有原图片所在的文件夹
target_folder = "E:/skin_data/yolo_img/"  # 符合需求的目标文件夹

# 调用函数进行拷贝
copy_images_from_json(json_folder, image_folder, target_folder, image_extension=".jpg")
相关推荐
高工智能汽车1 小时前
商用车自动驾驶,迎来大规模量产「临界点」?
人工智能·机器学习·自动驾驶
AI视觉网奇2 小时前
pyhton 掩码 筛选显示
人工智能·opencv·计算机视觉
bluetata3 小时前
亚马逊云科技 re:Invent 2024 Amazon Bedrock 推出新功能,加速AI落地
人工智能·科技·云计算·aws
old_power3 小时前
Linux(Ubuntu24.04)安装Eigen3库
linux·c++·人工智能
Struart_R4 小时前
DepthLab: From Partial to Complete 论文解读
人工智能·深度学习·计算机视觉·3d·深度估计·场景生成
红色的山茶花5 小时前
YOLOv10-1.1部分代码阅读笔记-autobackend.py
笔记·深度学习·yolo
love you joyfully7 小时前
YOLO——pytorch与paddle实现YOLO
pytorch·yolo·paddle
小李学AI8 小时前
基于YOLOv8的恶劣天气目标检测系统
人工智能·深度学习·神经网络·yolo·目标检测·机器学习·计算机视觉
有Li8 小时前
对比式机器学习揭示了跨物种共享和特异性的脑功能结构|文献速递-视觉大模型医疗图像应用
人工智能·机器学习
GIS数据转换器8 小时前
低空经济新动力:无人机航测技术的普及与应用
大数据·人工智能·物联网·无人机·智慧城市