├── .gitignore ├── README.md ├── canny.py ├── fb_profile.jpg ├── final.png ├── gradient_magnitude.png ├── net_canny.py ├── net_canny.pyc ├── requirements.txt ├── thin_edges.png └── thresholded.png /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCurro/CannyEdgePytorch/HEAD/README.md -------------------------------------------------------------------------------- /canny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCurro/CannyEdgePytorch/HEAD/canny.py -------------------------------------------------------------------------------- /fb_profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCurro/CannyEdgePytorch/HEAD/fb_profile.jpg -------------------------------------------------------------------------------- /final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCurro/CannyEdgePytorch/HEAD/final.png -------------------------------------------------------------------------------- /gradient_magnitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCurro/CannyEdgePytorch/HEAD/gradient_magnitude.png -------------------------------------------------------------------------------- /net_canny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCurro/CannyEdgePytorch/HEAD/net_canny.py -------------------------------------------------------------------------------- /net_canny.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCurro/CannyEdgePytorch/HEAD/net_canny.pyc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCurro/CannyEdgePytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /thin_edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCurro/CannyEdgePytorch/HEAD/thin_edges.png -------------------------------------------------------------------------------- /thresholded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DCurro/CannyEdgePytorch/HEAD/thresholded.png --------------------------------------------------------------------------------