├── .gitignore ├── AnnoUtil ├── AnnoUtil.py ├── AnnoUtil.pyproj └── getfacesinfddb.py ├── CMakeLists.txt ├── DataGenerator ├── CMakeLists.txt ├── DataGenerator.vcxproj └── datagenerator.cpp ├── MRLabeler.sln ├── MRLabeler ├── ColorRectTracker.cpp ├── ColorRectTracker.h ├── MFCLabeler.cpp ├── MFCLabeler.h ├── MFCLabeler.rc ├── MFCLabelerDlg.cpp ├── MFCLabelerDlg.h ├── MFCLabelerDlgOld.cpp ├── MRLabeler.vcxproj ├── MRLabelerstatic.vcxproj ├── ReadMe.txt ├── TipListBox.cpp ├── TipListBox.h ├── mrcvutil.h ├── res │ ├── MFCLabeler.ico │ └── MFCLabeler.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── MRLabeler使用说明.pdf ├── README.md ├── VOC2YOLOConverter ├── CMakeLists.txt ├── VOC2YOLOConverter.vcxproj └── main.cpp └── VOCUtil ├── AnnotationFile.cpp ├── AnnotationFile.h ├── DataSetConfig.cpp ├── DataSetConfig.h ├── pugiconfig.hpp ├── pugixml.cpp └── pugixml.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/.gitignore -------------------------------------------------------------------------------- /AnnoUtil/AnnoUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/AnnoUtil/AnnoUtil.py -------------------------------------------------------------------------------- /AnnoUtil/AnnoUtil.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/AnnoUtil/AnnoUtil.pyproj -------------------------------------------------------------------------------- /AnnoUtil/getfacesinfddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/AnnoUtil/getfacesinfddb.py -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.11) 2 | add_subdirectory(VOC2YOLOConverter) -------------------------------------------------------------------------------- /DataGenerator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/DataGenerator/CMakeLists.txt -------------------------------------------------------------------------------- /DataGenerator/DataGenerator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/DataGenerator/DataGenerator.vcxproj -------------------------------------------------------------------------------- /DataGenerator/datagenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/DataGenerator/datagenerator.cpp -------------------------------------------------------------------------------- /MRLabeler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler.sln -------------------------------------------------------------------------------- /MRLabeler/ColorRectTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/ColorRectTracker.cpp -------------------------------------------------------------------------------- /MRLabeler/ColorRectTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/ColorRectTracker.h -------------------------------------------------------------------------------- /MRLabeler/MFCLabeler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/MFCLabeler.cpp -------------------------------------------------------------------------------- /MRLabeler/MFCLabeler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/MFCLabeler.h -------------------------------------------------------------------------------- /MRLabeler/MFCLabeler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/MFCLabeler.rc -------------------------------------------------------------------------------- /MRLabeler/MFCLabelerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/MFCLabelerDlg.cpp -------------------------------------------------------------------------------- /MRLabeler/MFCLabelerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/MFCLabelerDlg.h -------------------------------------------------------------------------------- /MRLabeler/MFCLabelerDlgOld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/MFCLabelerDlgOld.cpp -------------------------------------------------------------------------------- /MRLabeler/MRLabeler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/MRLabeler.vcxproj -------------------------------------------------------------------------------- /MRLabeler/MRLabelerstatic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/MRLabelerstatic.vcxproj -------------------------------------------------------------------------------- /MRLabeler/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/ReadMe.txt -------------------------------------------------------------------------------- /MRLabeler/TipListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/TipListBox.cpp -------------------------------------------------------------------------------- /MRLabeler/TipListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/TipListBox.h -------------------------------------------------------------------------------- /MRLabeler/mrcvutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/mrcvutil.h -------------------------------------------------------------------------------- /MRLabeler/res/MFCLabeler.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/res/MFCLabeler.ico -------------------------------------------------------------------------------- /MRLabeler/res/MFCLabeler.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/res/MFCLabeler.rc2 -------------------------------------------------------------------------------- /MRLabeler/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/resource.h -------------------------------------------------------------------------------- /MRLabeler/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/stdafx.cpp -------------------------------------------------------------------------------- /MRLabeler/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/stdafx.h -------------------------------------------------------------------------------- /MRLabeler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler/targetver.h -------------------------------------------------------------------------------- /MRLabeler使用说明.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/MRLabeler使用说明.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/README.md -------------------------------------------------------------------------------- /VOC2YOLOConverter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/VOC2YOLOConverter/CMakeLists.txt -------------------------------------------------------------------------------- /VOC2YOLOConverter/VOC2YOLOConverter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/VOC2YOLOConverter/VOC2YOLOConverter.vcxproj -------------------------------------------------------------------------------- /VOC2YOLOConverter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/VOC2YOLOConverter/main.cpp -------------------------------------------------------------------------------- /VOCUtil/AnnotationFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/VOCUtil/AnnotationFile.cpp -------------------------------------------------------------------------------- /VOCUtil/AnnotationFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/VOCUtil/AnnotationFile.h -------------------------------------------------------------------------------- /VOCUtil/DataSetConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/VOCUtil/DataSetConfig.cpp -------------------------------------------------------------------------------- /VOCUtil/DataSetConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/VOCUtil/DataSetConfig.h -------------------------------------------------------------------------------- /VOCUtil/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/VOCUtil/pugiconfig.hpp -------------------------------------------------------------------------------- /VOCUtil/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/VOCUtil/pugixml.cpp -------------------------------------------------------------------------------- /VOCUtil/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imistyrain/MRLabeler/HEAD/VOCUtil/pugixml.hpp --------------------------------------------------------------------------------