自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 资源 (3)
  • 收藏
  • 关注

原创 ai学习网站

无意中发现了一个巨牛的人工智能教程,忍不住分享一下给大家。很通俗易懂,重点是还非常风趣幽默,像看小说一样。网址是https://blog.csdn.net/jiangjunshow/article/details/77338485

2021-07-07 22:34:14 118 1

原创 Faster-Rcnn-tf超详细训练过程<小白入门专用>手把手教学

1.获取faster-rcnn源码。github官方下载连接:https://github.com/endernewton/tf-faster-rcnn2.配置环境python3.6 、 tensorflow1.13使用pip install -r requirements.txt,直接下载所需依赖3.添加预训练模型下载vgg16模型,并且保存在路径:./data/imagenet_weights中,命名为vgg16.ckpt4.数据集格式数据集存放路径.\data\VOCdevkit20

2021-07-07 22:09:11 799

原创 创建conda虚拟环境 并导入pycharm中

进入 conda prompt 输入:conda create -n your_env_name python=3.9 anaconda其中`your_env_name 是你的环境名称 python版本可以任选

2021-07-05 21:28:09 518

原创 rolabelimg标定数据xml文件转为yolo可用txt

# coding=utf-8import osimport xml.dom.minidomimport cv2 as cvdef xml_to_txt(indir, outdir): os.chdir(indir) xmls = os.listdir('.') for i, file in enumerate(xmls): file_save = file.split('.')[0] + '.txt' file_txt = os.path

2021-04-11 21:50:40 2252 3

原创 json类型文件转为yolo可识别的txt文件

# --把4点标注的json文件转化为(x_c,y_c,h,w,theta)的yolo txt 格式import jsonimport osimport mathimport randommy_class = ["bottle"]def convert(image_id): in_file = 'annotations/%s.json' % image_id out_file = open('labels/%s.txt' % image_id, 'w') with

2021-04-11 21:23:57 574 1

原创 labelimg标定的xml文件转yolo可识别的txt文件

输出后txt文件出现在labes文件夹# xml解析包import xml.etree.ElementTree as ETimport pickleimport os# os.listdir() 方法用于返回指定的文件夹包含的文件或文件夹的名字的列表from os import listdir, getcwdfrom os.path import joinsets = ['train', 'test', 'val']classes = ['0']# 进行归一化操作def con

2021-04-11 21:19:03 704 4

原创 yolov5训练数据集划分

yolov5训练数据集划分按照默认8:1:1划分训练集,测试集,验证集。txt文件出现在imageset文件夹。import osimport randomtrainval_percent = 0.9train_percent = 0.9xmlfilepath = 'data/Annotations'txtsavepath = 'data/ImageSets'total_xml = os.listdir(xmlfilepath)num = len(total_xml)list =

2021-04-11 21:17:16 5684 3

原创 labelimg安装 python3.8

git源码链接:https://github.com/tzutalin/labelImg安装 pyqt5 5.15.4 在pycharm内安装 lxml 4.5.2 在pycarm内下载 labelimg 链接:https://files.pythonhosted.org/packages/83/1c/9007e92c3d4911b67d12c41cdc2729e69c145b72ae7c259d084e491cc4f8/labelImg-1.8.4.tar.

2021-04-08 20:51:23 406

VOC2007数据集.zip

VOC2007数据集.zip

2021-07-07

使用faster-rcnn-tf 对voc2007数据集进行40000次迭代获得模型

使用faster-rcnn-tf 对voc2007数据集进行40000次迭代获得模型

2021-07-07

rotation-yolov5.zip

基于yolov5的小目标,旋转数据集训练,

2021-04-11

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除