├── .circleci └── config.yml ├── .codeclimate.yml ├── .dockerignore ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── README.md ├── docs └── assets │ └── logo.png ├── src ├── imageDiffCalc.cpp └── main.cpp └── tests ├── build_googletest.sh ├── images ├── image_diff_temp │ └── new │ │ ├── ImgSeg-0001.png │ │ ├── ImgSeg-0002.png │ │ ├── ImgSeg-0003.png │ │ ├── ImgSeg-0009.png │ │ └── ImgSeg-0010.png ├── test_image_new.png └── test_image_old.png ├── integration_tests └── imageDiffCalc_test.cpp ├── system_tests └── imageDiffCalc_test.cpp └── unit_tests └── imageDiffCalc_test.cpp /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tests/googletest 2 | include/cxxopts.hpp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /src/imageDiffCalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/src/imageDiffCalc.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/src/main.cpp -------------------------------------------------------------------------------- /tests/build_googletest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/tests/build_googletest.sh -------------------------------------------------------------------------------- /tests/images/image_diff_temp/new/ImgSeg-0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/tests/images/image_diff_temp/new/ImgSeg-0001.png -------------------------------------------------------------------------------- /tests/images/image_diff_temp/new/ImgSeg-0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/tests/images/image_diff_temp/new/ImgSeg-0002.png -------------------------------------------------------------------------------- /tests/images/image_diff_temp/new/ImgSeg-0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/tests/images/image_diff_temp/new/ImgSeg-0003.png -------------------------------------------------------------------------------- /tests/images/image_diff_temp/new/ImgSeg-0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/tests/images/image_diff_temp/new/ImgSeg-0009.png -------------------------------------------------------------------------------- /tests/images/image_diff_temp/new/ImgSeg-0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/tests/images/image_diff_temp/new/ImgSeg-0010.png -------------------------------------------------------------------------------- /tests/images/test_image_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/tests/images/test_image_new.png -------------------------------------------------------------------------------- /tests/images/test_image_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/tests/images/test_image_old.png -------------------------------------------------------------------------------- /tests/integration_tests/imageDiffCalc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/tests/integration_tests/imageDiffCalc_test.cpp -------------------------------------------------------------------------------- /tests/system_tests/imageDiffCalc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/tests/system_tests/imageDiffCalc_test.cpp -------------------------------------------------------------------------------- /tests/unit_tests/imageDiffCalc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifull-dev/Gazo-san/HEAD/tests/unit_tests/imageDiffCalc_test.cpp --------------------------------------------------------------------------------