├── .gitignore ├── License ├── README.md ├── README_EN.md ├── docs ├── Download_and_usage.md ├── Download_and_usage_en.md ├── Keyboard_shortcuts.md ├── Keyboard_shortcuts_en.md ├── Usage_tutorial.md └── Usage_tutorial_en.md └── labcd ├── .editorconfig ├── CMakeLists.txt ├── LabCD.pri ├── LabCD.pro ├── LabCD.sln ├── LabCD.vcxproj ├── LabCD.vcxproj.filters ├── configs └── colormap.txt ├── i18n ├── English.qm └── English.ts ├── labcd.cpp ├── labcd.h ├── labcd.qrc ├── main.cpp ├── resources ├── AddLabel.png ├── CantDelete.png ├── Chinese.png ├── ClearMask.png ├── Color.png ├── Convert.png ├── Delete.png ├── DeleteAllPolygons.png ├── DeletePolygon.png ├── English.png ├── Enlarge.png ├── Folder.png ├── Full.png ├── Github.png ├── Help.png ├── Icon.png ├── Last.png ├── Merge.png ├── Narrow.png ├── Next.png ├── Reference.png ├── Save.png └── Split.png ├── utils ├── colormap.cpp ├── colormap.h ├── fileworker.cpp ├── fileworker.h ├── imgpress.cpp ├── imgpress.h ├── label.cpp └── label.h └── widgets ├── annotationscence.cpp ├── annotationscence.h ├── annotationview.cpp ├── annotationview.h ├── canvas.cpp ├── canvas.h ├── filelist.cpp ├── filelist.h ├── labeltable.cpp ├── labeltable.h ├── labgrid.cpp ├── labgrid.h ├── labline.cpp ├── labline.h ├── labpolygon.cpp ├── labpolygon.h ├── multcanvas.cpp ├── multcanvas.h └── opttypes.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/.gitignore -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/README_EN.md -------------------------------------------------------------------------------- /docs/Download_and_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/docs/Download_and_usage.md -------------------------------------------------------------------------------- /docs/Download_and_usage_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/docs/Download_and_usage_en.md -------------------------------------------------------------------------------- /docs/Keyboard_shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/docs/Keyboard_shortcuts.md -------------------------------------------------------------------------------- /docs/Keyboard_shortcuts_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/docs/Keyboard_shortcuts_en.md -------------------------------------------------------------------------------- /docs/Usage_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/docs/Usage_tutorial.md -------------------------------------------------------------------------------- /docs/Usage_tutorial_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/docs/Usage_tutorial_en.md -------------------------------------------------------------------------------- /labcd/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/.editorconfig -------------------------------------------------------------------------------- /labcd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/CMakeLists.txt -------------------------------------------------------------------------------- /labcd/LabCD.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/LabCD.pri -------------------------------------------------------------------------------- /labcd/LabCD.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/LabCD.pro -------------------------------------------------------------------------------- /labcd/LabCD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/LabCD.sln -------------------------------------------------------------------------------- /labcd/LabCD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/LabCD.vcxproj -------------------------------------------------------------------------------- /labcd/LabCD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/LabCD.vcxproj.filters -------------------------------------------------------------------------------- /labcd/configs/colormap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/configs/colormap.txt -------------------------------------------------------------------------------- /labcd/i18n/English.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/i18n/English.qm -------------------------------------------------------------------------------- /labcd/i18n/English.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/i18n/English.ts -------------------------------------------------------------------------------- /labcd/labcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/labcd.cpp -------------------------------------------------------------------------------- /labcd/labcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/labcd.h -------------------------------------------------------------------------------- /labcd/labcd.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/labcd.qrc -------------------------------------------------------------------------------- /labcd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/main.cpp -------------------------------------------------------------------------------- /labcd/resources/AddLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/AddLabel.png -------------------------------------------------------------------------------- /labcd/resources/CantDelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/CantDelete.png -------------------------------------------------------------------------------- /labcd/resources/Chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Chinese.png -------------------------------------------------------------------------------- /labcd/resources/ClearMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/ClearMask.png -------------------------------------------------------------------------------- /labcd/resources/Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Color.png -------------------------------------------------------------------------------- /labcd/resources/Convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Convert.png -------------------------------------------------------------------------------- /labcd/resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Delete.png -------------------------------------------------------------------------------- /labcd/resources/DeleteAllPolygons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/DeleteAllPolygons.png -------------------------------------------------------------------------------- /labcd/resources/DeletePolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/DeletePolygon.png -------------------------------------------------------------------------------- /labcd/resources/English.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/English.png -------------------------------------------------------------------------------- /labcd/resources/Enlarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Enlarge.png -------------------------------------------------------------------------------- /labcd/resources/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Folder.png -------------------------------------------------------------------------------- /labcd/resources/Full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Full.png -------------------------------------------------------------------------------- /labcd/resources/Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Github.png -------------------------------------------------------------------------------- /labcd/resources/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Help.png -------------------------------------------------------------------------------- /labcd/resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Icon.png -------------------------------------------------------------------------------- /labcd/resources/Last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Last.png -------------------------------------------------------------------------------- /labcd/resources/Merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Merge.png -------------------------------------------------------------------------------- /labcd/resources/Narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Narrow.png -------------------------------------------------------------------------------- /labcd/resources/Next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Next.png -------------------------------------------------------------------------------- /labcd/resources/Reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Reference.png -------------------------------------------------------------------------------- /labcd/resources/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Save.png -------------------------------------------------------------------------------- /labcd/resources/Split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/resources/Split.png -------------------------------------------------------------------------------- /labcd/utils/colormap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/utils/colormap.cpp -------------------------------------------------------------------------------- /labcd/utils/colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/utils/colormap.h -------------------------------------------------------------------------------- /labcd/utils/fileworker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/utils/fileworker.cpp -------------------------------------------------------------------------------- /labcd/utils/fileworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/utils/fileworker.h -------------------------------------------------------------------------------- /labcd/utils/imgpress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/utils/imgpress.cpp -------------------------------------------------------------------------------- /labcd/utils/imgpress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/utils/imgpress.h -------------------------------------------------------------------------------- /labcd/utils/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/utils/label.cpp -------------------------------------------------------------------------------- /labcd/utils/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/utils/label.h -------------------------------------------------------------------------------- /labcd/widgets/annotationscence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/annotationscence.cpp -------------------------------------------------------------------------------- /labcd/widgets/annotationscence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/annotationscence.h -------------------------------------------------------------------------------- /labcd/widgets/annotationview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/annotationview.cpp -------------------------------------------------------------------------------- /labcd/widgets/annotationview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/annotationview.h -------------------------------------------------------------------------------- /labcd/widgets/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/canvas.cpp -------------------------------------------------------------------------------- /labcd/widgets/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/canvas.h -------------------------------------------------------------------------------- /labcd/widgets/filelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/filelist.cpp -------------------------------------------------------------------------------- /labcd/widgets/filelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/filelist.h -------------------------------------------------------------------------------- /labcd/widgets/labeltable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/labeltable.cpp -------------------------------------------------------------------------------- /labcd/widgets/labeltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/labeltable.h -------------------------------------------------------------------------------- /labcd/widgets/labgrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/labgrid.cpp -------------------------------------------------------------------------------- /labcd/widgets/labgrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/labgrid.h -------------------------------------------------------------------------------- /labcd/widgets/labline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/labline.cpp -------------------------------------------------------------------------------- /labcd/widgets/labline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/labline.h -------------------------------------------------------------------------------- /labcd/widgets/labpolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/labpolygon.cpp -------------------------------------------------------------------------------- /labcd/widgets/labpolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/labpolygon.h -------------------------------------------------------------------------------- /labcd/widgets/multcanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/multcanvas.cpp -------------------------------------------------------------------------------- /labcd/widgets/multcanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/multcanvas.h -------------------------------------------------------------------------------- /labcd/widgets/opttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geoyee/LabCD/HEAD/labcd/widgets/opttypes.h --------------------------------------------------------------------------------