当前位置:   article > 正文

基于Yolov8的光伏电池缺陷检测,引入ICCV2023 动态蛇形卷积和独家全网首发多维协作注意模块MCA,实现涨点创新十足_电池缺陷 数据集

电池缺陷 数据集

1.光伏电池缺陷数据集介绍

背景:太阳能作为一种极具吸引力的替代电力能源,太阳能光伏电池(即光伏电池)是太阳能发电系统的基础,一般情况下,电池中的各类缺陷会直接影响到光伏电池的光电转化效率和使用寿命。太阳能电池片组件作为太阳能开发利用的主要载体,其质量保证包括很多环节,其中,太阳能电池片的焊接则是其中最为关键的一环,电池片的焊接质量直接会影响组件性能。为了保证焊接质量,对太阳能电池片的焊前检测也是必不可少的。

数据集大小:原始219张,数据扩展2倍至657张,类别classes = ["crackle","invalid"],按照8:1:1进行数据集随机生成。

1.1数据集划分

通过split_train_val.py得到trainval.txt、val.txt、test.txt  

  1. # coding:utf-8
  2. import os
  3. import random
  4. import argparse
  5. parser = argparse.ArgumentParser()
  6. #xml文件的地址,根据自己的数据进行修改 xml一般存放在Annotations下
  7. parser.add_argument('--xml_path', default='Annotations', type=str, help='input xml label path')
  8. #数据集的划分,地址选择自己数据下的ImageSets/Main
  9. parser.add_argument('--txt_path', default='ImageSets/Main', type=str, help='output txt label path')
  10. opt = parser.parse_args()
  11. trainval_percent = 0.9
  12. train_percent = 0.8
  13. xmlfilepath = opt.xml_path
  14. txtsavepath = opt.txt_path
  15. total_xml = os.listdir(xmlfilepath)
  16. if not os.path.exists(txtsavepath):
  17. os.makedirs(txtsavepath)
  18. num = len(total_xml)
  19. list_index = range(num)
  20. tv = int(num * trainval_percent)
  21. tr = int(tv * train_percent)
  22. trainval = random.sample(list_index, tv)
  23. train = random.sample(trainval, tr)
  24. file_trainval = open(txtsavepath + '/trainval.txt', 'w')
  25. file_test = open(txtsavepath + '/test.txt', 'w')
  26. file_train = open(txtsavepath + '/train.txt', 'w')
  27. file_val = open(txtsavepath + '/val.txt', 'w')
  28. for i in list_index:
  29. name = total_xml[i][:-4] + '\n'
  30. if i in trainval:
  31. file_trainval.write(name)
  32. if i in train:
  33. file_train.write(name)
  34. else:
  35. file_val.write(name)
  36. else:
  37. file_test.write(name)
  38. file_trainval.close()
  39. file_train.close()
  40. file_val.close()
  41. file_test.close()

1.2 通过voc_label.py得到适合yolov8训练需要的

  1. # -*- coding: utf-8 -*-
  2. import xml.etree.ElementTree as ET
  3. import os
  4. from os import getcwd
  5. sets = ['train', 'val']
  6. classes = ["crackle","invalid"] # 改成自己的类别
  7. abs_path = os.getcwd()
  8. print(abs_path)
  9. def convert(size, box):
  10. dw = 1. / (size[0])
  11. dh = 1. / (size[1])
  12. x = (box[0] + box[1]) / 2.0 - 1
  13. y = (box[2] + box[3]) / 2.0 - 1
  14. w = box[1] - box[0]
  15. h = box[3] - box[2]
  16. x = x * dw
  17. w = w * dw
  18. y = y * dh
  19. h = h * dh
  20. return x, y, w, h
  21. def convert_annotation(image_id):
  22. in_file = open('Annotations/%s.xml' % (image_id), encoding='UTF-8')
  23. out_file = open('labels/%s.txt' % (image_id), 'w')
  24. tree = ET.parse(in_file)
  25. root = tree.getroot()
  26. size = root.find('size')
  27. w = int(size.find('width').text)
  28. h = int(size.find('height').text)
  29. for obj in root.iter('object'):
  30. difficult = obj.find('difficult').text
  31. #difficult = obj.find('Difficult').text
  32. cls = obj.find('name').text
  33. if cls not in classes or int(difficult) == 1:
  34. continue
  35. cls_id = classes.index(cls)
  36. xmlbox = obj.find('bndbox')
  37. b = (float(xmlbox.find('xmin').text), float(xmlbox.find('xmax').text), float(xmlbox.find('ymin').text),
  38. float(xmlbox.find('ymax').text))
  39. b1, b2, b3, b4 = b
  40. # 标注越界修正
  41. if b2 > w:
  42. b2 = w
  43. if b4 > h:
  44. b4 = h
  45. b = (b1, b2, b3, b4)
  46. bb = convert((w, h), b)
  47. out_file.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n')
  48. wd = getcwd()
  49. for image_set in sets:
  50. if not os.path.exists('labels/'):
  51. os.makedirs('labels/')
  52. image_ids = open('ImageSets/Main/%s.txt' % (image_set)).read().strip().split()
  53. list_file = open('%s.txt' % (image_set), 'w')
  54. for image_id in image_ids:
  55. list_file.write(abs_path + '/images/%s.jpg\n' % (image_id))
  56. convert_annotation(image_id)
  57. list_file.close()

1.3生成内容如下

2.训练结果分析

原始yolov8结果

mAP@0.5为0.919

  1. YOLOv8n summary (fused): 168 layers, 3006038 parameters, 0 gradients, 8.1 GFLOPs
  2. Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 4/4 [00:10<00:00, 2.67s/it]
  3. all 119 269 0.887 0.839 0.919 0.634
  4. crackle 119 191 0.837 0.807 0.867 0.558
  5. invalid 119 78 0.937 0.872 0.972 0.711

2.1 多维协作注意模块MCA

独家全网首发MCA

 YoloV8改进:原创独家首发 | 多维协作注意模块MCA,暴力涨点,效果秒杀ECA、SRM、CBAM等 | 即插即用系列_AI小怪兽的博客-CSDN博客

实验结果:

mAP@0.5原始为0.919提升至0.930

 

  1. YOLOv8_MCALayer summary (fused): 181 layers, 3006048 parameters, 0 gradients, 8.1 GFLOPs
  2. Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 4/4 [00:04<00:00, 1.12s/it]
  3. all 119 269 0.909 0.875 0.93 0.663
  4. crackle 119 191 0.851 0.801 0.875 0.564
  5. invalid 119 78 0.967 0.949 0.984 0.763
  6. Speed: 0.3ms preprocess, 3.9ms inference, 0.0ms loss, 6.8ms postprocess per image

2.2  动态蛇形卷积(Dynamic Snake Convolution)

  关注到管状结构细长连续的特点,并利用这一信息在神经网络以下三个阶段同时增强感知:特征提取、特征融合和损失约束。分别设计了动态蛇形卷积(Dynamic Snake Convolution),多视角特征融合策略与连续性拓扑约束损失。 

实验结果:

mAP@0.5原始为0.919提升至0.930

 

  1. YOLOv8n-C2f-DySnakeConv summary: 209 layers, 3337118 parameters, 0 gradients, 8.4 GFLOPs
  2. Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 4/4 [00:03<00:00, 1.04it/s]
  3. all 119 269 0.867 0.829 0.93 0.618
  4. crackle 119 191 0.865 0.812 0.903 0.543
  5. invalid 119 78 0.869 0.846 0.958 0.693

首发Yolov8涨点神器:动态蛇形卷积(Dynamic Snake Convolution),实现暴力涨点 | ICCV2023_AI小怪兽的博客-CSDN博客

2.3 MCA+DSC组合

实验结果:

mAP@0.5原始为0.919提升至0.934

  1. YOLOv8n-C2f-DySnakeConv-MCALayer summary: 262 layers, 3425904 parameters, 0 gradients, 8.7 GFLOPs
  2. Class Images Instances Box(P R mAP50 mAP50-95): 100%|██████████| 4/4 [00:04<00:00, 1.03s/it]
  3. all 119 269 0.907 0.893 0.934 0.637
  4. crackle 119 191 0.869 0.838 0.885 0.537
  5. invalid 119 78 0.946 0.949 0.982 0.737

源码详见:

https://cv2023.blog.csdn.net/article/details/132850295

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/91079
推荐阅读
相关标签
  

闽ICP备14008679号