├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── color_test.json ├── config.json ├── create_poly_json.py ├── default.png ├── giphy.gif ├── git_version.cmake.in ├── images_test ├── Abbey_Road.jpg ├── Abbey_Road_color_mask.png ├── Abbey_Road_mask.png ├── Abbey_Road_watershed_mask.png ├── road1.jpg ├── road1_color_mask.png ├── road1_mask.png └── road1_watershed_mask.png ├── pixel_annotation_tool_version.h.in ├── scripts_to_build ├── README.md ├── build_linux.sh ├── linuxdeployqt-continuous-x86_64.AppImage ├── make.bat ├── win_make_vc14_x64_abreheret.bat ├── win_make_vc14_x64_abreheret_qt5.10.bat ├── win_make_vc14_x64_to_edit.bat └── win_make_vc17_x64.bat └── src ├── about_dialog.cpp ├── about_dialog.h ├── image_canvas.cpp ├── image_canvas.h ├── image_mask.cpp ├── image_mask.h ├── label_widget.cpp ├── label_widget.h ├── labels.cpp ├── labels.h ├── main.cpp ├── main_window.cpp ├── main_window.h ├── main_window.ui ├── utils.cpp └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/appveyor.yml -------------------------------------------------------------------------------- /color_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/color_test.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/config.json -------------------------------------------------------------------------------- /create_poly_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/create_poly_json.py -------------------------------------------------------------------------------- /default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/default.png -------------------------------------------------------------------------------- /giphy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/giphy.gif -------------------------------------------------------------------------------- /git_version.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/git_version.cmake.in -------------------------------------------------------------------------------- /images_test/Abbey_Road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/images_test/Abbey_Road.jpg -------------------------------------------------------------------------------- /images_test/Abbey_Road_color_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/images_test/Abbey_Road_color_mask.png -------------------------------------------------------------------------------- /images_test/Abbey_Road_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/images_test/Abbey_Road_mask.png -------------------------------------------------------------------------------- /images_test/Abbey_Road_watershed_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/images_test/Abbey_Road_watershed_mask.png -------------------------------------------------------------------------------- /images_test/road1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/images_test/road1.jpg -------------------------------------------------------------------------------- /images_test/road1_color_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/images_test/road1_color_mask.png -------------------------------------------------------------------------------- /images_test/road1_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/images_test/road1_mask.png -------------------------------------------------------------------------------- /images_test/road1_watershed_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/images_test/road1_watershed_mask.png -------------------------------------------------------------------------------- /pixel_annotation_tool_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/pixel_annotation_tool_version.h.in -------------------------------------------------------------------------------- /scripts_to_build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/scripts_to_build/README.md -------------------------------------------------------------------------------- /scripts_to_build/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/scripts_to_build/build_linux.sh -------------------------------------------------------------------------------- /scripts_to_build/linuxdeployqt-continuous-x86_64.AppImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/scripts_to_build/linuxdeployqt-continuous-x86_64.AppImage -------------------------------------------------------------------------------- /scripts_to_build/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/scripts_to_build/make.bat -------------------------------------------------------------------------------- /scripts_to_build/win_make_vc14_x64_abreheret.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/scripts_to_build/win_make_vc14_x64_abreheret.bat -------------------------------------------------------------------------------- /scripts_to_build/win_make_vc14_x64_abreheret_qt5.10.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/scripts_to_build/win_make_vc14_x64_abreheret_qt5.10.bat -------------------------------------------------------------------------------- /scripts_to_build/win_make_vc14_x64_to_edit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/scripts_to_build/win_make_vc14_x64_to_edit.bat -------------------------------------------------------------------------------- /scripts_to_build/win_make_vc17_x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/scripts_to_build/win_make_vc17_x64.bat -------------------------------------------------------------------------------- /src/about_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/about_dialog.cpp -------------------------------------------------------------------------------- /src/about_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/about_dialog.h -------------------------------------------------------------------------------- /src/image_canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/image_canvas.cpp -------------------------------------------------------------------------------- /src/image_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/image_canvas.h -------------------------------------------------------------------------------- /src/image_mask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/image_mask.cpp -------------------------------------------------------------------------------- /src/image_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/image_mask.h -------------------------------------------------------------------------------- /src/label_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/label_widget.cpp -------------------------------------------------------------------------------- /src/label_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/label_widget.h -------------------------------------------------------------------------------- /src/labels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/labels.cpp -------------------------------------------------------------------------------- /src/labels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/labels.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/main_window.cpp -------------------------------------------------------------------------------- /src/main_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/main_window.h -------------------------------------------------------------------------------- /src/main_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/main_window.ui -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/PixelAnnotationTool/HEAD/src/utils.h --------------------------------------------------------------------------------