自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 收藏
  • 关注

原创 YOLOv3使用笔记——批处理图片并返回检测数量

1.测试单张图./darknet detector test cfg/coco.data cfg/yolov3.cfg yolov3.weights data/dog.jpg 主要调用到的detector.c中的test_detector函数2.修改批处理test_detector()void test_detector(char *datacfg, char *cfgfile, char *we...

2018-05-31 19:41:05 12404 33

原创 YOLOv3使用笔记——保存检测视频结果

https://github.com/RongSong1993/YOLOv3_SaveVideo1.测试视频主要是调用到detector demo,主要修改的是demo.c中的demo函数。./darknet detector demo ./cfg/voc.data ./cfg/yolov3-voc.cfg ./results/yolov3-voc_final.weights 1.mp4 -gpu...

2018-05-31 17:45:34 15110 37

原创 YOLOv3使用笔记——计算mAP、recall

1.批处理测试图输出检测结果文本./darknet detector valid cfg/voc.data cfg/yolov3-voc.cfg results/yolov3-voc_final.weights -out detect_result.txt使用detector valid参数,具体函数是detector.c下的validate_detector函数。将训练集的检测结果保存...

2018-05-31 15:12:16 32786 86

原创 SSD使用笔记——ssd_detect.cpp的使用以及自动标注的实现

1.编译ssd-caffe,在.build/examples/ssd/下生成ssd_detect.bin查看ssd_detect.cpp参数,输入测试网络,测试模型,图片/视频列表,文件类型(图像/视频),阈值。输出带有检测坐标信息的文本。// This is a demo code for using a SSD model to do detection.// The code i...

2018-05-29 20:32:50 2827 2

原创 SSD使用笔记——曲线可视化

1. 用plot_training_log.py.example做可视化修改一下 ./tools/extra/plot_training_log.py.example#!/usr/bin/env python#coding=utf-8import inspectimport osimport randomimport sysimport matplotlib.cm as cmximp...

2018-05-06 23:39:42 2508 2

原创 SSD使用笔记——训练自己的数据集、测试图像与视频、计算mAP

Wei Liu大神SSD工程:https://github.com/weiliu89/caffe/tree/ssd1.编译caffe,下载预训练模型存放于./caffe/models/VGGNethttps://pan.baidu.com/s/1oYquStMO-c70hLtwEXzD8Q2.在./caffe/data下新建VOCdevkit文件夹,VOCdevkit下再建一个自己的数据集文件夹,...

2018-05-06 22:31:16 3250 4

原创 使用labelImg图像标注工具制作VOC数据集

https://github.com/tzutalin/labelImg1.Linux下安装brew install qt qt4brew install libxml2make qt4py2pythobelImg.py2.windows下安装安装安装Anaconda2-4.4.0-Windows-x86_64.exehttps://pan...

2018-05-06 01:18:38 11278 6

原创 py-faster-rcnn使用笔记——feature maps可视化

原工程https://github.com/meihuakaile/faster-rcnn1.tools文件夹下新建一个vis_features.py修改标签、模型、网络、测试图#!/usr/bin/env python# --------------------------------------------------------# Faster R-CNN# Copyright (c...

2018-05-05 10:30:55 1602 5

原创 py-faster-rcnn使用笔记——训练自己的数据集、测试图像与视频、计算mAP

rgb大神工程https://github.com/rbgirshick/py-faster-rcnn1. 修改配置Makefile.config编译py-faster-rcnn2.下载VOC2007数据集,解压到py-faster-rcnn/data文件夹下,用自己的数据集替换掉py-faster-rcnn/data/VOCdevkit2007/VOC2007/下的Annotations、Ima...

2018-05-05 09:42:50 2923 1

空空如也

空空如也

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

TA关注的人

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