Implemented a new edge detection video filter
The edge detection filter uses the Sobel operator to detect and highlight
edges in a frame. In order to successfully detect an edge, the image must
first be converted to gray scale (because Sobel is a gray scale operator) and
then have a slight Gaussian blur applied to it. We do this because Sobel is a
noisy operator and the Gaussian blur reduces this noise.
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
Showing
- NEWS 1 addition, 0 deletionsNEWS
- modules/MODULES_LIST 2 additions, 1 deletionmodules/MODULES_LIST
- modules/video_filter/Makefile.am 3 additions, 0 deletionsmodules/video_filter/Makefile.am
- modules/video_filter/edgedetection.c 244 additions, 0 deletionsmodules/video_filter/edgedetection.c
- po/POTFILES.in 1 addition, 0 deletionspo/POTFILES.in
Loading
Please register or sign in to comment