├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── images ├── encode.png └── texture.png └── src ├── cvUtils.cpp ├── cvutils.h ├── graycode.cpp ├── graycode.h └── test.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith2018/GrayCode/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith2018/GrayCode/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith2018/GrayCode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith2018/GrayCode/HEAD/README.md -------------------------------------------------------------------------------- /images/encode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith2018/GrayCode/HEAD/images/encode.png -------------------------------------------------------------------------------- /images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith2018/GrayCode/HEAD/images/texture.png -------------------------------------------------------------------------------- /src/cvUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith2018/GrayCode/HEAD/src/cvUtils.cpp -------------------------------------------------------------------------------- /src/cvutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith2018/GrayCode/HEAD/src/cvutils.h -------------------------------------------------------------------------------- /src/graycode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith2018/GrayCode/HEAD/src/graycode.cpp -------------------------------------------------------------------------------- /src/graycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith2018/GrayCode/HEAD/src/graycode.h -------------------------------------------------------------------------------- /src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keith2018/GrayCode/HEAD/src/test.cpp --------------------------------------------------------------------------------