├── .github └── workflows │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── drawonpic.cpp ├── drawonpic.h ├── labeldialog.cpp ├── labeldialog.h ├── labeldialog.ui ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── model.cpp ├── model.hpp ├── pic └── demo.png ├── resource.qrc ├── resource ├── 1.svg ├── 2.svg ├── 3.svg ├── 4.svg ├── 5.svg ├── Bb.svg ├── Big.svg ├── Bs.svg ├── G.svg ├── O.svg ├── Small.svg ├── add.png ├── auto-fix.png ├── auto.png ├── directory.png ├── left-arrow.png ├── model-opt-int8.bin ├── model-opt-int8.xml ├── model-opt.onnx ├── right-arrow.png └── save.png └── scripts ├── LabelRoboMaster.desktop ├── LabelRoboMaster.png └── windows-publish.ps1 /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/README.md -------------------------------------------------------------------------------- /drawonpic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/drawonpic.cpp -------------------------------------------------------------------------------- /drawonpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/drawonpic.h -------------------------------------------------------------------------------- /labeldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/labeldialog.cpp -------------------------------------------------------------------------------- /labeldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/labeldialog.h -------------------------------------------------------------------------------- /labeldialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/labeldialog.ui -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/model.cpp -------------------------------------------------------------------------------- /model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/model.hpp -------------------------------------------------------------------------------- /pic/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/pic/demo.png -------------------------------------------------------------------------------- /resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource.qrc -------------------------------------------------------------------------------- /resource/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/1.svg -------------------------------------------------------------------------------- /resource/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/2.svg -------------------------------------------------------------------------------- /resource/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/3.svg -------------------------------------------------------------------------------- /resource/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/4.svg -------------------------------------------------------------------------------- /resource/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/5.svg -------------------------------------------------------------------------------- /resource/Bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/Bb.svg -------------------------------------------------------------------------------- /resource/Big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/Big.svg -------------------------------------------------------------------------------- /resource/Bs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/Bs.svg -------------------------------------------------------------------------------- /resource/G.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/G.svg -------------------------------------------------------------------------------- /resource/O.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/O.svg -------------------------------------------------------------------------------- /resource/Small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/Small.svg -------------------------------------------------------------------------------- /resource/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/add.png -------------------------------------------------------------------------------- /resource/auto-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/auto-fix.png -------------------------------------------------------------------------------- /resource/auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/auto.png -------------------------------------------------------------------------------- /resource/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/directory.png -------------------------------------------------------------------------------- /resource/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/left-arrow.png -------------------------------------------------------------------------------- /resource/model-opt-int8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/model-opt-int8.bin -------------------------------------------------------------------------------- /resource/model-opt-int8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/model-opt-int8.xml -------------------------------------------------------------------------------- /resource/model-opt.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/model-opt.onnx -------------------------------------------------------------------------------- /resource/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/right-arrow.png -------------------------------------------------------------------------------- /resource/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/resource/save.png -------------------------------------------------------------------------------- /scripts/LabelRoboMaster.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/scripts/LabelRoboMaster.desktop -------------------------------------------------------------------------------- /scripts/LabelRoboMaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/scripts/LabelRoboMaster.png -------------------------------------------------------------------------------- /scripts/windows-publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinyang-go/LabelRoboMaster/HEAD/scripts/windows-publish.ps1 --------------------------------------------------------------------------------