<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
當我們在檢測較大解析度的圖片時,對小目標的檢測效果一直是較差的,所以就有了下面幾種方法:
切圖檢測
# -*- coding:utf-8 -*- import os import matplotlib.pyplot as plt import cv2 import numpy as np def divide_img(img_path, img_name, save_path): imgg = img_path + img_name img = cv2.imread(imgg) # img = cv2.cvtColor(img,cv2.COLOR_BGR2RGB) h = img.shape[0] w = img.shape[1] n = int(np.floor(h * 1.0 / 1000)) + 1 m = int(np.floor(w * 1.0 / 1000)) + 1 print('h={},w={},n={},m={}'.format(h, w, n, m)) dis_h = int(np.floor(h / n)) dis_w = int(np.floor(w / m)) num = 0 for i in range(n): for j in range(m): num += 1 print('i,j={}{}'.format(i, j)) sub = img[dis_h * i:dis_h * (i + 1), dis_w * j:dis_w * (j + 1), :] cv2.imwrite(save_path + '{}_{}.bmp'.format(name, num), sub) if __name__ == '__main__': img_path = r'G:1/' save_path = r'G:3/' img_list = os.listdir(img_path) for name in img_list: divide_img(img_path, name, save_path)
使用模型檢測後得到:
import os from cv2 import cv2 # 儲存所有圖片的寬高 # todo: img_info={'name': [w_h, child_w_h, mix_row_w_h, mix_col_w_h]} img_info = {} all_info = {} # 初始化img_info def init(big_images_path, mix_percent, rows, cols): image_names = os.listdir(big_images_path) for img_name in image_names: big_path = big_images_path + '\' + img_name # print(big_path) img = cv2.imread(big_path) size = img.shape[0:2] w = size[1] h = size[0] child_width = int(w) // cols child_height = int(h) // rows mix_row_width = int(child_width * mix_percent * 2) mix_row_height = child_height mix_col_width = child_width mix_col_height = int(child_height * mix_percent * 2) # 根據img儲存w和h img_info[img_name.split('.')[0]] = [w, h, child_width, child_height, mix_row_width, mix_row_height, mix_col_width, mix_col_height] # 讀取所有檢測出來的 小圖片的label def get_label_info(labels_path, mix_percent, rows, cols): labels = os.listdir(labels_path) for label in labels: # print(label) # todo: type: 0正常, 1row, 2col # 判斷該label屬於哪一張圖片 cur_label_belong = label.split('_')[0] cur_big_width = img_info[cur_label_belong][0] cur_big_height = img_info[cur_label_belong][1] # 融合區域距離邊界的一小部分寬高 cur_row_width_step = img_info[cur_label_belong][2] * (1 - mix_percent) cur_col_height_step = img_info[cur_label_belong][3] * (1 - mix_percent) # 檔名給予資料 # child_type = [] # child_num = [] # label內容給予資料 child_class_index = [] child_x = [] child_y = [] child_width = [] child_height = [] type = -1 num = -1 class_index = -1 x = 0.0 y = 0.0 width = 0.0 height = 0.0 # print(f'{label}') # 讀取所有需要的資料 f = open(labels_path + '\' + label, 'r') lines = f.read() # print(lines) f.close() contents = lines.split('n')[:-1] # print(contents) for content in contents: content = content.split(' ') # print(content) class_index = int(content[0]) x = float(content[1]) y = float(content[2]) width = float(content[3]) height = float(content[4]) pass # print(class_index, x, y, width, height) assert class_index != -1 or x != -1.0 or y != -1.0 or width != -1.0 or height != -1.0, f'class_index:{class_index}, x:{x}, y:{y}, width:{width}, height:{height}' # 轉換成 資料 座標, 並根據不同的num進行處理 num = label.split('_')[-1].split('.')[0] # 圖片尾號 命名: xxxx_x.jpg xxxx_mix_row_xx.jpg xxxx_mix_col_xx.jpg cur_img_width = 0 cur_img_height = 0 distance_x = 0 distance_y = 0 small_image_width = img_info[cur_label_belong][2] small_image_height = img_info[cur_label_belong][3] if label.find('mix_row') != -1: # type = 1. distance_x = int(num) % (cols-1) distance_y = int(num) // (rows-1) cur_img_width = img_info[cur_label_belong][4] cur_img_height = img_info[cur_label_belong][5] # row x 加上step x = x * cur_img_width + cur_row_width_step + distance_x * small_image_width y = y * cur_img_height + distance_y * cur_img_height elif label.find('mix_col') != -1: # type = 2 distance_x = int(num) % cols distance_y = int(num) // rows cur_img_width = img_info[cur_label_belong][6] cur_img_height = img_info[cur_label_belong][7] # col y 加上step print(f'x:{x}, y:{y}, cur_img_width:{cur_img_width}, cur_img_height:{cur_img_height}') x = x * cur_img_width + distance_x * cur_img_width y = y * cur_img_height + cur_col_height_step + distance_y * small_image_height print(f'x:{x}, y:{y}, height:{cur_col_height_step}') else: # type = 0 distance_x = int(num) % cols distance_y = int(num) // rows cur_img_width = img_info[cur_label_belong][2] cur_img_height = img_info[cur_label_belong][3] # 小圖片內, 無需加上 step x = x * cur_img_width + distance_x * cur_img_width y = y * cur_img_height + distance_y * cur_img_height assert cur_img_width != 0 or cur_img_height != 0 or distance_x != 0 or distance_y != 0, f'cur_img_width:{cur_img_width}, cur_img_height:{cur_img_height}, distance_x:{distance_x}, distance_y:{distance_y}' assert x < cur_big_width and y < cur_big_height, f'{label}, {content}nw:{cur_big_width}, h:{cur_big_height}, x:{x}, y:{y}' width = width * cur_img_width height = height * cur_img_height assert x != 0.0 or y != 0.0 or width != 0.0 or height != 0.0, f'x:{x}, y:{y}, width:{width}, height:{height}' # child_type.append(type) # child_num.append(num) child_class_index.append(class_index) child_x.append(x) child_y.append(y) child_width.append(width) child_height.append(height) # todo: 所有資訊 根據 cur_label_belong 儲存在all_info中 for index, x, y, width, height in zip(child_class_index, child_x, child_y, child_width, child_height): if cur_label_belong not in all_info: all_info[cur_label_belong] = [[index, x, y, width, height]] else: all_info[cur_label_belong].append([index, x, y, width, height]) child_class_index.clear() child_x.clear() child_y.clear() child_width.clear() child_height.clear() # print((all_info['0342'])) # todo: 轉成 yolo 格式, 儲存 def save_yolo_label(yolo_labels_path): for key in all_info: # img_path = r'G:Unitycode_projectother_projectdatajointbig_images' + '\' + key + '.JPG' # img = cv2.imread(img_path) yolo_label_path = yolo_labels_path + '\' + key + '.txt' cur_big_width = img_info[key][0] cur_big_height = img_info[key][1] content = '' i = 0 for index, x, y, width, height in all_info[key]: # print(all_info[key][i]) x = x / cur_big_width y = y / cur_big_height width = width / cur_big_width height = height / cur_big_height assert x < 1.0 and y < 1.0 and width < 1.0 and height < 1.0, f'{key} {i}n{all_info[key][i]}nx:{x}, y:{y}, width:{width}, height:{height}' content += f'{index} {x} {y} {width} {height}n' i += 1 with open(yolo_label_path, 'w') as f: f.write(content) def joint_main(big_images_path=r'G:3', labels_path=r'G:5', yolo_labels_path=r'G:6', mix_percent=0.2, rows=4, cols=4): print(f'融合圖片, 原圖片路徑:{big_images_path}n小圖檢測的txt結果路徑:{labels_path}n資料融合後txt結果路徑:{yolo_labels_path}') init(big_images_path, mix_percent, rows, cols) get_label_info(labels_path, mix_percent, rows, cols) save_yolo_label(yolo_labels_path) joint_main()
# -*- coding: utf-8 -*- import os from PIL import Image from PIL import ImageDraw, ImageFont from cv2 import cv2 def draw_images(images_dir, txt_dir, box_dir, font_type_path): font = ImageFont.truetype(font_type_path, 50) if not os.path.exists(box_dir): os.makedirs(box_dir) # num = 0 # 設定顏色 all_colors = ['red', 'green', 'yellow', 'blue', 'pink', 'black', 'skyblue', 'brown', 'orange', 'purple', 'gray', 'lightpink', 'gold', 'brown', 'black'] colors = {} for file in os.listdir(txt_dir): print(file) image = os.path.splitext(file)[0].replace('xml', 'bmp') + '.bmp' # 轉換成cv2讀取,防止圖片載入錯誤 img = cv2.imread(images_dir + '/' + image) TURN = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) img = Image.fromarray(TURN) # img.show() if img.mode == "P": img = img.convert('RGB') w, h = img.size tag_path = txt_dir + '/' + file with open(tag_path) as f: for line in f: line_parts = line.split(' ') # 根據不同的 label 儲存顏色 if line_parts[0] not in colors.keys(): colors[line_parts[0]] = all_colors[len(colors.keys())] color = colors[line_parts[0]] draw = ImageDraw.Draw(img) x = (float(line_parts[1]) - 0.5 * float(line_parts[3])) * w y = (float(line_parts[2]) - 0.5 * float(line_parts[4])) * h xx = (float(line_parts[1]) + 0.5 * float(line_parts[3])) * w yy = (float(line_parts[2]) + 0.5 * float(line_parts[4])) * h draw.rectangle([x - 10, y - 10, xx, yy], fill=None, outline=color, width=5) # num += 1 del draw img.save(box_dir + '/' + image) # print(file, num) # print(colors) def draw_main(box_dir=r'G:5', txt_dir=r'G:6', image_source_dir=r'G:3'): font_type_path = 'C:/Windows/Fonts/simsun.ttc' print(f'標註框, 資料來源: {txt_dir}n 被標註圖片: {image_source_dir}n 結果儲存路徑: {box_dir}') draw_images(image_source_dir, txt_dir, box_dir, font_type_path) draw_main()
效果對比:(上YOLOv5檢測,下YOLOv5+切圖檢測)
參考:
https://blog.csdn.net/qq_43622870/article/details/124984295
到此這篇關於YOLOv5小目標切圖檢測的思路與方法的文章就介紹到這了,更多相關YOLOv5小目標切圖檢測內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45