├── .gitignore ├── license.md ├── opencv.nimble ├── opencv ├── core.nim ├── highgui.nim ├── imgproc.nim ├── imgproc.nim.cfg ├── imgproc │ └── iptypes.nim └── types.nim ├── readme.md └── tests ├── camera.nim ├── camera.nim.cfg ├── picture.nim ├── picture.nim.cfg ├── qr_box_template.png └── qr_nim.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.c 3 | -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/license.md -------------------------------------------------------------------------------- /opencv.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/opencv.nimble -------------------------------------------------------------------------------- /opencv/core.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/opencv/core.nim -------------------------------------------------------------------------------- /opencv/highgui.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/opencv/highgui.nim -------------------------------------------------------------------------------- /opencv/imgproc.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/opencv/imgproc.nim -------------------------------------------------------------------------------- /opencv/imgproc.nim.cfg: -------------------------------------------------------------------------------- 1 | --path:"." 2 | -------------------------------------------------------------------------------- /opencv/imgproc/iptypes.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/opencv/imgproc/iptypes.nim -------------------------------------------------------------------------------- /opencv/types.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/opencv/types.nim -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/readme.md -------------------------------------------------------------------------------- /tests/camera.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/tests/camera.nim -------------------------------------------------------------------------------- /tests/camera.nim.cfg: -------------------------------------------------------------------------------- 1 | path = ".." -------------------------------------------------------------------------------- /tests/picture.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/tests/picture.nim -------------------------------------------------------------------------------- /tests/picture.nim.cfg: -------------------------------------------------------------------------------- 1 | path = ".." -------------------------------------------------------------------------------- /tests/qr_box_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/tests/qr_box_template.png -------------------------------------------------------------------------------- /tests/qr_nim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dom96/nim-opencv/HEAD/tests/qr_nim.png --------------------------------------------------------------------------------