├── .DS_Store ├── .gitignore ├── README.md ├── array ├── Array.h └── Array │ ├── Array.cpp │ └── ArrayDefinitions.h ├── c66 ├── VXLIB_bufParams.h ├── VXLIB_sobel_3x3_i8u_o16s_o16s_cn.c ├── VXLIB_sobel_3x3_i8u_o16s_o16s_cn.h └── VXLIB_types.h ├── edlines ├── edlines.cpp └── edlines.h ├── pics ├── 2019-05-06_10-55-52_00016509.bmp ├── 2019-05-06_10-55-52_00016518.bmp └── test.bmp └── test.cpp /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .vscode/ 3 | test 4 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/README.md -------------------------------------------------------------------------------- /array/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/array/Array.h -------------------------------------------------------------------------------- /array/Array/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/array/Array/Array.cpp -------------------------------------------------------------------------------- /array/Array/ArrayDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/array/Array/ArrayDefinitions.h -------------------------------------------------------------------------------- /c66/VXLIB_bufParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/c66/VXLIB_bufParams.h -------------------------------------------------------------------------------- /c66/VXLIB_sobel_3x3_i8u_o16s_o16s_cn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/c66/VXLIB_sobel_3x3_i8u_o16s_o16s_cn.c -------------------------------------------------------------------------------- /c66/VXLIB_sobel_3x3_i8u_o16s_o16s_cn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/c66/VXLIB_sobel_3x3_i8u_o16s_o16s_cn.h -------------------------------------------------------------------------------- /c66/VXLIB_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/c66/VXLIB_types.h -------------------------------------------------------------------------------- /edlines/edlines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/edlines/edlines.cpp -------------------------------------------------------------------------------- /edlines/edlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/edlines/edlines.h -------------------------------------------------------------------------------- /pics/2019-05-06_10-55-52_00016509.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/pics/2019-05-06_10-55-52_00016509.bmp -------------------------------------------------------------------------------- /pics/2019-05-06_10-55-52_00016518.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/pics/2019-05-06_10-55-52_00016518.bmp -------------------------------------------------------------------------------- /pics/test.bmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocolord/edlines_line_segment_detection/HEAD/test.cpp --------------------------------------------------------------------------------