From a066bc81e96f31ab5f4658336f2c2c642dccf146 Mon Sep 17 00:00:00 2001 From: mansi75 <51503378+mansi75@users.noreply.github.com> Date: Wed, 26 May 2021 00:43:46 +0530 Subject: [PATCH] Update README.md Laplacian Operator is also a derivative operator which is used to find edges in an image. It is a second order derivative mask. It measures the rate at which first derivative changes in a single pass. Laplacian edge detection uses one kernel and contains negative values in a cross pattern. Laplacian edge detector is sensitive to noise. --- EdgeDetection/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EdgeDetection/README.md b/EdgeDetection/README.md index 007d9f11..bf97a9bc 100644 --- a/EdgeDetection/README.md +++ b/EdgeDetection/README.md @@ -1,8 +1,8 @@ # Edge Detection -Implementation of the following Edge Detection methods: +Implementation of the following Edge Detection methods:- * Canny Edge Detection * Robert Edge Detection * Prewitt Edge Detection -* Sobel Edge Detection \ No newline at end of file +* Sobel Edge Detection