Skip to content

nahid0335/edge-detection-using-sobel-filter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

edge-detection-using-sobel-filter

Here use convulation with sobel filter from scratch in opencv python .

have to detect edge using sobel filter.

  • sobel x derivative kernel (detect vertical edge)
    -1 0 1
    -2 0 2
    -1 0 1
  • sobel y derivative kernel (detect horizontal edge)
    -1 -2 -1
    0 0 0
    1 2 1

input image

This is an image

output x derivative

This is an image

output y derivative

This is an image

combine of x and y derivative

This is an image

About

vertical and horizontal edge detection using Sobel filter from scratch in openCV python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages