All Projects → imistyrain → Mrlabeler

imistyrain / Mrlabeler

极速检测标注工具An efficient tool for objection detection annotation

Projects that are alternatives of or similar to Mrlabeler

Pytorch Ssd
MobileNetV1, MobileNetV2, VGG based SSD/SSD-lite implementation in Pytorch 1.0 / Pytorch 0.4. Out-of-box support for retraining on Open Images dataset. ONNX and Caffe2 support. Experiment Ideas like CoordConv.
Stars: ✭ 1,054 (+1656.67%)
Mutual labels:  object-detection
Hsd
Hierarchical Shot Detector (ICCV2019)
Stars: ✭ 53 (-11.67%)
Mutual labels:  object-detection
Rrpn
Code for 'RRPN: Radar Region Proposal Network for Object Detection in Autonomous Vehicles' (ICIP 2019)
Stars: ✭ 57 (-5%)
Mutual labels:  object-detection
Jacinto Ai Devkit
Training & Quantization of embedded friendly Deep Learning / Machine Learning / Computer Vision models
Stars: ✭ 49 (-18.33%)
Mutual labels:  object-detection
Trafficvision
MIVisionX toolkit is a comprehensive computer vision and machine intelligence libraries, utilities and applications bundled into a single toolkit.
Stars: ✭ 52 (-13.33%)
Mutual labels:  object-detection
Wheat
Wheat Detection challenge on Kaggle
Stars: ✭ 54 (-10%)
Mutual labels:  object-detection
Yolo tensorflow
🚖 Object Detection (YOLOv1) implentation in tensorflow, with training, testing and video features.
Stars: ✭ 45 (-25%)
Mutual labels:  object-detection
Ssd keras
Port of Single Shot MultiBox Detector to Keras
Stars: ✭ 1,101 (+1735%)
Mutual labels:  object-detection
Math object detection
An image recognition/object detection model that detects handwritten digits and simple math operators. The output of the predicted objects (numbers & math operators) is then evaluated and solved.
Stars: ✭ 52 (-13.33%)
Mutual labels:  object-detection
Mmdetection object detection demo
How to train an object detection model with mmdetection
Stars: ✭ 55 (-8.33%)
Mutual labels:  object-detection
Keras Retinanet For Teknofest 2019
Using RetinaNet for object detection from drone images in Teknofest istanbul 2019 Artificial Intelligence Competition
Stars: ✭ 50 (-16.67%)
Mutual labels:  object-detection
Lfip
Efficient Featurized Image Pyramid Network for Single Shot Detector, CVPR, 2019
Stars: ✭ 52 (-13.33%)
Mutual labels:  object-detection
Mish
Official Repsoitory for "Mish: A Self Regularized Non-Monotonic Neural Activation Function" [BMVC 2020]
Stars: ✭ 1,072 (+1686.67%)
Mutual labels:  object-detection
Ssd Knowledge Distillation
A PyTorch Implementation of Knowledge Distillation on SSD
Stars: ✭ 51 (-15%)
Mutual labels:  object-detection
Logo Detection Yolov2
Stars: ✭ 57 (-5%)
Mutual labels:  object-detection
Inceptionvisiondemo
🎥 iOS11 demo application for dominant objects detection.
Stars: ✭ 48 (-20%)
Mutual labels:  object-detection
Mask rcnn ros
The ROS Package of Mask R-CNN for Object Detection and Segmentation
Stars: ✭ 53 (-11.67%)
Mutual labels:  object-detection
Darknet ros
YOLO ROS: Real-Time Object Detection for ROS
Stars: ✭ 1,101 (+1735%)
Mutual labels:  object-detection
Maskrcnn Modanet
A Mask R-CNN Keras implementation with Modanet annotations on the Paperdoll dataset
Stars: ✭ 59 (-1.67%)
Mutual labels:  object-detection
Yolov4 Pytorch
This is a pytorch repository of YOLOv4, attentive YOLOv4 and mobilenet YOLOv4 with PASCAL VOC and COCO
Stars: ✭ 1,070 (+1683.33%)
Mutual labels:  object-detection

MRLabeler

VOC YOLO 数据集标注工具 V1.4

Change log:

1.4 添加tooltip,更改添加标注框为按shift键以提升标注速度

1.3 添加由Video自动生成标注工程

1.2 添加帮助文件支持

1.1 添加列表框支持鼠标选择文件进行标注,添加键盘切换图片功能

1.0 初版发布,支持矩形框拖动功能

快速上手

参考MRLabeler使用说明.pdf

编译方法

  • 1.按照MRHead的方法搭建好跨平台OpenCV编译环境

  • 2.用VS2013打开MRLabeler.sln编译即可

本项目严格按照VOC和YOLO方式组织,各文件夹统一放置到一个目录下,记为DATASETDIR,其中images文件夹用于存放原始图片,Annotations文件夹用于存放VOC格式的标注,labels用于存放YOLO格式的标注,mrconfig.xml作为DATASETDIR数据集的配置文件。

本项目从加载要标注数据集的相关信息,并将原标注一并显示,通过鼠标选中并拖动框的位置,点击下一张(>按钮)或者上一张(<按钮)保存。

你也可以直接在编辑框输入要跳转的索引,直接跳到要标注的位置。

组合框用于设置标注的类别,每次画框前要先对这个进行设置。

数据集配置文件中各个字段的含义如下:


<dataset>
	<name>IBM</name>数据集名称,自己定义
	<year>0712</year>数据集年代,为支持VOC而用
	<imagedir>Image</imagedir>数据集图片文件夹路径,相对于rootdir的路径
	<annotationdir>Annotations</annotationdir>原标注文件夹路径,相对于rootdir路径
	<labelsdir>labels</labelsdir>YOLO格式标注文件夹路径,相对于本项目的路径
	<currentlabelingclass>car</currentlabelingclass>当前要标注的类别名称
	<lastlabeledindex>0</lastlabeledindex>最后标注的类别索引
	<bsavexml>1</bsavexml>是否保存VOC格式标注,默认保存
	<bsavetxt>1</bsavetxt>是否保存YOLO格式标注,默认保存
	<classes>所有的类别,每个类别独占一行
		<class>face</class>
		<class>mask</class>
	</classes>
</dataset>

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].