├── CMakeLists.txt ├── LICENSE ├── README.md ├── cltoheader.c ├── egbuf.h ├── helper.c ├── helper.h ├── oclhelper.c ├── oclhelper.h ├── oclimgutil.c ├── oclimgutil.cl ├── oclimgutil.h ├── oclpolyline.c ├── oclpolyline.cl ├── oclpolyline.h ├── oclrect.c ├── oclrect.cl ├── oclrect.h ├── poly.cpp ├── rect.cpp ├── vec234.h ├── videotest.cpp ├── vidpoly.cpp └── vidrect.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/README.md -------------------------------------------------------------------------------- /cltoheader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/cltoheader.c -------------------------------------------------------------------------------- /egbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/egbuf.h -------------------------------------------------------------------------------- /helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/helper.c -------------------------------------------------------------------------------- /helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/helper.h -------------------------------------------------------------------------------- /oclhelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/oclhelper.c -------------------------------------------------------------------------------- /oclhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/oclhelper.h -------------------------------------------------------------------------------- /oclimgutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/oclimgutil.c -------------------------------------------------------------------------------- /oclimgutil.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/oclimgutil.cl -------------------------------------------------------------------------------- /oclimgutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/oclimgutil.h -------------------------------------------------------------------------------- /oclpolyline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/oclpolyline.c -------------------------------------------------------------------------------- /oclpolyline.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/oclpolyline.cl -------------------------------------------------------------------------------- /oclpolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/oclpolyline.h -------------------------------------------------------------------------------- /oclrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/oclrect.c -------------------------------------------------------------------------------- /oclrect.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/oclrect.cl -------------------------------------------------------------------------------- /oclrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/oclrect.h -------------------------------------------------------------------------------- /poly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/poly.cpp -------------------------------------------------------------------------------- /rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/rect.cpp -------------------------------------------------------------------------------- /vec234.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/vec234.h -------------------------------------------------------------------------------- /videotest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/videotest.cpp -------------------------------------------------------------------------------- /vidpoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/vidpoly.cpp -------------------------------------------------------------------------------- /vidrect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibatch/rectdetect/HEAD/vidrect.cpp --------------------------------------------------------------------------------