├── .gitignore ├── Makefile ├── Makefile.config.example ├── README.md ├── pic.jpg ├── src ├── Output.cpp ├── Output.h ├── Utils.cpp ├── Utils.h ├── WorkImage.cpp ├── WorkImage.h ├── annotateRect.cpp └── extractRect.cpp └── tutorial ├── a.jpg ├── a_subselection.jpg ├── a_with_factor.jpg ├── a_with_rotation_noise.jpg ├── e.jpg ├── e_subselection.jpg ├── e_with_factor.jpg ├── e_with_rotation_noise.jpg ├── labeled.png ├── merge.jpg ├── pic_selection.jpg ├── result.png ├── second_selected.png └── selected.png /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | Makefile.config 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/Makefile.config.example -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/README.md -------------------------------------------------------------------------------- /pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/pic.jpg -------------------------------------------------------------------------------- /src/Output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/src/Output.cpp -------------------------------------------------------------------------------- /src/Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/src/Output.h -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/src/Utils.h -------------------------------------------------------------------------------- /src/WorkImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/src/WorkImage.cpp -------------------------------------------------------------------------------- /src/WorkImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/src/WorkImage.h -------------------------------------------------------------------------------- /src/annotateRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/src/annotateRect.cpp -------------------------------------------------------------------------------- /src/extractRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/src/extractRect.cpp -------------------------------------------------------------------------------- /tutorial/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/a.jpg -------------------------------------------------------------------------------- /tutorial/a_subselection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/a_subselection.jpg -------------------------------------------------------------------------------- /tutorial/a_with_factor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/a_with_factor.jpg -------------------------------------------------------------------------------- /tutorial/a_with_rotation_noise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/a_with_rotation_noise.jpg -------------------------------------------------------------------------------- /tutorial/e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/e.jpg -------------------------------------------------------------------------------- /tutorial/e_subselection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/e_subselection.jpg -------------------------------------------------------------------------------- /tutorial/e_with_factor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/e_with_factor.jpg -------------------------------------------------------------------------------- /tutorial/e_with_rotation_noise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/e_with_rotation_noise.jpg -------------------------------------------------------------------------------- /tutorial/labeled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/labeled.png -------------------------------------------------------------------------------- /tutorial/merge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/merge.jpg -------------------------------------------------------------------------------- /tutorial/pic_selection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/pic_selection.jpg -------------------------------------------------------------------------------- /tutorial/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/result.png -------------------------------------------------------------------------------- /tutorial/second_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/second_selected.png -------------------------------------------------------------------------------- /tutorial/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher5106/FastAnnotationTool/HEAD/tutorial/selected.png --------------------------------------------------------------------------------