├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin └── .gitignore ├── docs ├── Canny Edge Detector Parallelization in CUDA.pptx ├── ECE588_Varvel_Collins_Reddy_Final_Project_Report.pdf ├── Progress_Report.pdf └── Project_Proposal.pdf ├── img ├── 1080p_in.jpg ├── 4k_in.jpg ├── 8k_in.jpg ├── Engine_in.PNG ├── small_in.jpeg ├── test.bmp └── test.jpg ├── inc ├── ed_args.h ├── ed_error.h └── ed_pixel.h ├── src ├── canny.cu ├── canny.h ├── cannyEdgeDetector.cpp ├── cannyEdgeDetector.hpp ├── edgeDetector.cpp ├── edgeDetector.hpp ├── imgMgr.cpp ├── imgMgr.hpp └── main.cpp └── third_party ├── install_magick++.sh └── magick.env /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /docs/Canny Edge Detector Parallelization in CUDA.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/docs/Canny Edge Detector Parallelization in CUDA.pptx -------------------------------------------------------------------------------- /docs/ECE588_Varvel_Collins_Reddy_Final_Project_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/docs/ECE588_Varvel_Collins_Reddy_Final_Project_Report.pdf -------------------------------------------------------------------------------- /docs/Progress_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/docs/Progress_Report.pdf -------------------------------------------------------------------------------- /docs/Project_Proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/docs/Project_Proposal.pdf -------------------------------------------------------------------------------- /img/1080p_in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/img/1080p_in.jpg -------------------------------------------------------------------------------- /img/4k_in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/img/4k_in.jpg -------------------------------------------------------------------------------- /img/8k_in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/img/8k_in.jpg -------------------------------------------------------------------------------- /img/Engine_in.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/img/Engine_in.PNG -------------------------------------------------------------------------------- /img/small_in.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/img/small_in.jpeg -------------------------------------------------------------------------------- /img/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/img/test.bmp -------------------------------------------------------------------------------- /img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/img/test.jpg -------------------------------------------------------------------------------- /inc/ed_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/inc/ed_args.h -------------------------------------------------------------------------------- /inc/ed_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/inc/ed_error.h -------------------------------------------------------------------------------- /inc/ed_pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/inc/ed_pixel.h -------------------------------------------------------------------------------- /src/canny.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/src/canny.cu -------------------------------------------------------------------------------- /src/canny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/src/canny.h -------------------------------------------------------------------------------- /src/cannyEdgeDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/src/cannyEdgeDetector.cpp -------------------------------------------------------------------------------- /src/cannyEdgeDetector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/src/cannyEdgeDetector.hpp -------------------------------------------------------------------------------- /src/edgeDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/src/edgeDetector.cpp -------------------------------------------------------------------------------- /src/edgeDetector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/src/edgeDetector.hpp -------------------------------------------------------------------------------- /src/imgMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/src/imgMgr.cpp -------------------------------------------------------------------------------- /src/imgMgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/src/imgMgr.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/src/main.cpp -------------------------------------------------------------------------------- /third_party/install_magick++.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/third_party/install_magick++.sh -------------------------------------------------------------------------------- /third_party/magick.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinap/canny-edge-detector/HEAD/third_party/magick.env --------------------------------------------------------------------------------