当前位置: 首页 > article >正文

将语义分割的标签转换为实例分割(yolo)的标签

语义分割的标签(目标处为255,其余处为0)
在这里插入图片描述
实例分割的标签(yolo.txt),描述边界的多边形顶点的归一化位置
在这里插入图片描述
绘制在原图类似蓝色的边框所示。
在这里插入图片描述

废话不多说,直接贴代码;

import os
import cv2
import numpy as np
import shutil

def img2label(imgPath, labelPath, imgbjPath, seletName):
    # 检查labelPath文件夹是否存在
    
    if not os.path.exists(labelPath):
        os.makedirs(labelPath)
    if not os.path.exists(imgbjPath):
        os.makedirs(imgbjPath)
    imgList = os.listdir(imgPath)
    for imgName in imgList:
        # 筛选
        if imgName.split('_')[0] != seletName and seletName != '':
            continue
        print(imgName)
        img = cv2.imread(imgPath + imgName, cv2.IMREAD_COLOR)
        h, w, _ = img.shape
        # print(h, w)
        GrayImage=cv2.cvtColor(img,cv2.COLOR_BGR2GRAY) #图片灰度化处理
        ret, binary = cv2.threshold(GrayImage,40,255,cv2.THRESH_BINARY) #图片二值化,灰度值大于40赋值255,反之0
        # ret, binary = cv2.threshold(binary, 80, 255, cv2.THRESH_BINARY_INV)    # (黑白二值反转)
        cv2.imwrite(r'denoisedfz.png', binary) #保存图片
        # 腐蚀
        # kernel = np.ones((3,3),np.uint8) 
        # binary = cv2.erode(binary,kernel,iterations = 3)
        
        thresholdL = h/100 * w/100   #设定阈值
        thresholdH = h/1 * w/1   #设定阈值

        #cv2.fingContours寻找图片轮廓信息
        """提取二值化后图片中的轮廓信息 ,返回值contours存储的即是图片中的轮廓信息,是一个向量,内每个元素保存
        了一组由连续的Point点构成的点的集合的向量,每一组Point点集就是一个轮廓,有多少轮廓,向量contours就有
        多少元素"""
        contours,hierarch=cv2.findContours(binary,cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_TC89_L1)
        contoursNorm = []
        objs= []
        # print(contours)
        for i in range(len(contours)):
            
            area = cv2.contourArea(contours[i]) #计算轮廓所占面积
            # print(area)
            if area > thresholdL and area < thresholdH:
                obj = ['0']
                for point in contours[i]:
                    obj.append(str(point[0][0] * 1.0 / w)) # 获取x
                    obj.append(str(point[0][1] * 1.0 / h)) # 获取y
                contoursNorm.append(contours[i])
                objs.append(obj)
        
        # print(objs[10])
        # 查看效果
        cv2.drawContours(img, contoursNorm, -1,(255,0,0),2)
        cv2.imwrite(imgbjPath+imgName, img) #保存图片

        if len(objs) == 0:
            print('不保存标签,跳过!')
            continue
        # 写入txt
        realName = imgName.split('-l')[0]
        f=open(labelPath + realName + '.txt',"w")
        for obj in objs:
            f.writelines(' '.join(obj))
            f.writelines('\n')
        f.close()
        # break

# oridata 保存着原图像
# maskdata 保存着标签图像
# lab 保存这yolo格式的标签文件
# bj 保存着标记好边界的图像

def OrganizeImages(path):
    imgs = os.listdir(path)
    for im in imgs:
        imPath = os.path.join(path, im)
        if im.split('.')[-1] == 'jpg':
            # 原图像
            # 移动到oridata
            source_path = imPath
            destination_path = 'data\\oridata\\' + im
            shutil.copy(source_path, destination_path)
        if im.split('.')[-1] == 'png':
            # mask label
            # 移动到maskdata
            source_path = imPath
            destination_path = 'data\\maskdata\\' + im
            shutil.copy(source_path, destination_path)


if __name__ == '__main__':
    img2label(
        imgPath='data\\maskdata\\',  # maskdata 保存着标签图像
        labelPath='data\\lab\\',     # lab 保存这yolo格式的标签文件
        imgbjPath = 'data\\bj\\',    # bj 保存着标记好边界的图像
        seletName='')

http://www.kler.cn/a/288256.html

相关文章:

  • 昆明华厦眼科医院举办中外专家眼科技术研讨会
  • [Linux网络编程]10-http协议,分别使用epoll和libevent两种方式实现B/S服务器
  • 基于STM32设计的森林火灾监测系统(华为云IOT)_263
  • 高级java每日一道面试题-2024年11月06日-JVM篇-什么是 Class 文件? Class 文件主要的信息结构有哪些?
  • Sql server查询数据库表的数量
  • fastadmin多个表crud连表操作步骤
  • vim和nano的基础教程(很基础的那种)
  • wordcloud兼figma的词云图片python生成
  • 情感共鸣:数业智能心大陆重塑AI心理交互新纪元
  • Github 2024-09-03 Python开源项目日报 Top10
  • cpu架构:x86和arm
  • 猎板PCB正片与负片工艺:深入解析PCB制造中的光刻技术及其应用
  • 【深度学习 transformer】transformer 训练一个文本分类任务,超简单了
  • 【初出江湖】分布式之什么是分布式存储?
  • 函数式编程(纯函数函数柯里化代码组合)
  • WPF性能优化之UI虚拟化
  • 贪心算法---监控二叉树
  • 综合评价 | 基于层次-熵权-博弈组合法的综合评价模型(Matlab)
  • JavaScript学习文档(12):什么是正则表达式、语法、元字符、修饰符
  • Flask中多app应用怎么完成
  • Ps:颜色模型、色彩空间及配置文件
  • 个人旅游网(3)——功能详解——旅游路线功能
  • java后端开发-Mybatis连接数据库步骤
  • 【数据结构取经之路】布隆过滤器BloomFilter原理、误判率推导、代码实现
  • 具备自动灵敏度校准、支持单键和多点触控的触摸芯片-GTX315L
  • 一文读懂flask--gunicorn是如何启动flask应用