摘要: 文章目录 1. RCNN2. Fast-RCNN3. Faster-RCNN 1. RCNN 论文:Rich feature hierarchies for accurate object detection and semantic segmentation 地址:https://arxiv.or 阅读全文
posted @ 2024-01-22 16:21 mango1698 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 论文:Feature Pyramid Networks for Object Detection 网址:https://arxiv.org/abs/1612.03144 图a为特征图像金字塔,针对我们要检测不同尺度的目标时,我们会将图片缩放到不同的尺度,针对每个尺度的图片都经过我们的模型进行预测。面 阅读全文
posted @ 2024-01-22 13:13 mango1698 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 工具类 from PIL.Image import Image, fromarray import PIL.ImageDraw as ImageDraw import PIL.ImageFont as ImageFont from PIL import ImageColor import numpy 阅读全文
posted @ 2024-01-22 11:31 mango1698 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 文章目录 1. PASCAL VOC格式 划分训练集和验证集2. 自定义dataset 1. PASCAL VOC格式 划分训练集和验证集 import os import random def main(): random.seed(0) # 设置随机种子,保证随机结果可复现 files_path 阅读全文
posted @ 2024-01-22 11:19 mango1698 阅读(24) 评论(0) 推荐(0) 编辑