├── .github └── workflows │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake-config.txt ├── configure.cpp ├── configure.hpp ├── configuredialog.cpp ├── configuredialog.h ├── configuredialog.ui ├── drawonpic.cpp ├── drawonpic.h ├── labeldialog.cpp ├── labeldialog.h ├── labeldialog.ui ├── labeldialog.ui.autosave ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── model.cpp ├── model.hpp ├── pic ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── B1.png ├── B3.png ├── B4.png ├── B5.png ├── Example-A.png ├── Example-B.png ├── Example-C.png ├── Example-D.png ├── LM-cmake.png ├── LM-make.png ├── QT-cmakelist.png ├── QT-components.png ├── QT-type.png ├── ap-kj.png ├── ap-loss-exa.png ├── ap-loss.png ├── ap-ty.png ├── djd.png ├── fake-dark.png ├── fake-dim-armor.jpg ├── fake-front.png ├── fake-less-light.jpg ├── fake-loss.png ├── fake-noise.png ├── fake-one.png ├── fake-rectangle.png ├── qsz.png ├── sb.png ├── xjd.png ├── 标注顺序.png ├── 界面介绍.png └── 难以识别的目标.png ├── resource.qrc ├── resource ├── 1.svg ├── 2.svg ├── 3.svg ├── 4.svg ├── 5.svg ├── B3.svg ├── B4.svg ├── B5.svg ├── Bb.svg ├── Big.svg ├── Bs.svg ├── G.svg ├── O.svg ├── R.svg ├── Small.svg ├── add.png ├── anti-wind.svg ├── arrow.svg ├── auto-fix.png ├── auto.png ├── bottom.svg ├── directory.png ├── entrance.svg ├── left-arrow.png ├── model-opt-int8.bin ├── model-opt-int8.xml ├── model-opt.onnx ├── right-arrow.png ├── save.png └── top.svg └── scripts ├── LabelRoboMaster.desktop ├── LabelRoboMaster.png └── windows-publish.ps1 /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/README.md -------------------------------------------------------------------------------- /cmake-config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/cmake-config.txt -------------------------------------------------------------------------------- /configure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/configure.cpp -------------------------------------------------------------------------------- /configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/configure.hpp -------------------------------------------------------------------------------- /configuredialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/configuredialog.cpp -------------------------------------------------------------------------------- /configuredialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/configuredialog.h -------------------------------------------------------------------------------- /configuredialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/configuredialog.ui -------------------------------------------------------------------------------- /drawonpic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/drawonpic.cpp -------------------------------------------------------------------------------- /drawonpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/drawonpic.h -------------------------------------------------------------------------------- /labeldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/labeldialog.cpp -------------------------------------------------------------------------------- /labeldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/labeldialog.h -------------------------------------------------------------------------------- /labeldialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/labeldialog.ui -------------------------------------------------------------------------------- /labeldialog.ui.autosave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/labeldialog.ui.autosave -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/model.cpp -------------------------------------------------------------------------------- /model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/model.hpp -------------------------------------------------------------------------------- /pic/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/2.png -------------------------------------------------------------------------------- /pic/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/3.png -------------------------------------------------------------------------------- /pic/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/4.png -------------------------------------------------------------------------------- /pic/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/5.png -------------------------------------------------------------------------------- /pic/B1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/B1.png -------------------------------------------------------------------------------- /pic/B3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/B3.png -------------------------------------------------------------------------------- /pic/B4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/B4.png -------------------------------------------------------------------------------- /pic/B5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/B5.png -------------------------------------------------------------------------------- /pic/Example-A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/Example-A.png -------------------------------------------------------------------------------- /pic/Example-B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/Example-B.png -------------------------------------------------------------------------------- /pic/Example-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/Example-C.png -------------------------------------------------------------------------------- /pic/Example-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/Example-D.png -------------------------------------------------------------------------------- /pic/LM-cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/LM-cmake.png -------------------------------------------------------------------------------- /pic/LM-make.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/LM-make.png -------------------------------------------------------------------------------- /pic/QT-cmakelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/QT-cmakelist.png -------------------------------------------------------------------------------- /pic/QT-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/QT-components.png -------------------------------------------------------------------------------- /pic/QT-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/QT-type.png -------------------------------------------------------------------------------- /pic/ap-kj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/ap-kj.png -------------------------------------------------------------------------------- /pic/ap-loss-exa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/ap-loss-exa.png -------------------------------------------------------------------------------- /pic/ap-loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/ap-loss.png -------------------------------------------------------------------------------- /pic/ap-ty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/ap-ty.png -------------------------------------------------------------------------------- /pic/djd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/djd.png -------------------------------------------------------------------------------- /pic/fake-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/fake-dark.png -------------------------------------------------------------------------------- /pic/fake-dim-armor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/fake-dim-armor.jpg -------------------------------------------------------------------------------- /pic/fake-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/fake-front.png -------------------------------------------------------------------------------- /pic/fake-less-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/fake-less-light.jpg -------------------------------------------------------------------------------- /pic/fake-loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/fake-loss.png -------------------------------------------------------------------------------- /pic/fake-noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/fake-noise.png -------------------------------------------------------------------------------- /pic/fake-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/fake-one.png -------------------------------------------------------------------------------- /pic/fake-rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/fake-rectangle.png -------------------------------------------------------------------------------- /pic/qsz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/qsz.png -------------------------------------------------------------------------------- /pic/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/sb.png -------------------------------------------------------------------------------- /pic/xjd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/xjd.png -------------------------------------------------------------------------------- /pic/标注顺序.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/标注顺序.png -------------------------------------------------------------------------------- /pic/界面介绍.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/界面介绍.png -------------------------------------------------------------------------------- /pic/难以识别的目标.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/pic/难以识别的目标.png -------------------------------------------------------------------------------- /resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource.qrc -------------------------------------------------------------------------------- /resource/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/1.svg -------------------------------------------------------------------------------- /resource/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/2.svg -------------------------------------------------------------------------------- /resource/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/3.svg -------------------------------------------------------------------------------- /resource/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/4.svg -------------------------------------------------------------------------------- /resource/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/5.svg -------------------------------------------------------------------------------- /resource/B3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/B3.svg -------------------------------------------------------------------------------- /resource/B4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/B4.svg -------------------------------------------------------------------------------- /resource/B5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/B5.svg -------------------------------------------------------------------------------- /resource/Bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/Bb.svg -------------------------------------------------------------------------------- /resource/Big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/Big.svg -------------------------------------------------------------------------------- /resource/Bs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/Bs.svg -------------------------------------------------------------------------------- /resource/G.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/G.svg -------------------------------------------------------------------------------- /resource/O.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/O.svg -------------------------------------------------------------------------------- /resource/R.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/R.svg -------------------------------------------------------------------------------- /resource/Small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/Small.svg -------------------------------------------------------------------------------- /resource/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/add.png -------------------------------------------------------------------------------- /resource/anti-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/anti-wind.svg -------------------------------------------------------------------------------- /resource/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/arrow.svg -------------------------------------------------------------------------------- /resource/auto-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/auto-fix.png -------------------------------------------------------------------------------- /resource/auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/auto.png -------------------------------------------------------------------------------- /resource/bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/bottom.svg -------------------------------------------------------------------------------- /resource/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/directory.png -------------------------------------------------------------------------------- /resource/entrance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/entrance.svg -------------------------------------------------------------------------------- /resource/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/left-arrow.png -------------------------------------------------------------------------------- /resource/model-opt-int8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/model-opt-int8.bin -------------------------------------------------------------------------------- /resource/model-opt-int8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/model-opt-int8.xml -------------------------------------------------------------------------------- /resource/model-opt.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/model-opt.onnx -------------------------------------------------------------------------------- /resource/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/right-arrow.png -------------------------------------------------------------------------------- /resource/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/save.png -------------------------------------------------------------------------------- /resource/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/resource/top.svg -------------------------------------------------------------------------------- /scripts/LabelRoboMaster.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/scripts/LabelRoboMaster.desktop -------------------------------------------------------------------------------- /scripts/LabelRoboMaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/scripts/LabelRoboMaster.png -------------------------------------------------------------------------------- /scripts/windows-publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonthMoonBird/LabelRoboMaster/HEAD/scripts/windows-publish.ps1 --------------------------------------------------------------------------------