sobel Questions
10
Solved
I am using a sobel filter of size 3x3 to calculate the image derivative. Looking at some articles on the internet, it seems that kernels for sobel filter for size 5x5 and 7x7 are also common, but I...
Patty asked 5/3, 2012 at 13:59
3
Solved
Given a greyscale 8 bit image (2D array with values from 0 - 255 for pixel intensity), I want to implement the Sobel operators (mask) on an image. The Sobel function below basically loops around a ...
Cunctation asked 19/8, 2016 at 9:24
2
Solved
Is there any convolution method in Tensorflow to apply a Sobel filter to an image img (tensor of type float32 and rank 2)?
sobel_x = tf.constant([[-1, 0, 1], [-2, 0, 2], [-1, 0, 1]], 'float32')
re...
Streamline asked 22/2, 2016 at 22:35
2
Solved
I am using OpenCV's Sobel filter of size 5x5 and 7x7 to calculate the image derivative.
Could someone please let me know the kernel values for the Sobel filter of size 5x5 and 7x7 in OpenCV? When...
Milk asked 30/7, 2015 at 16:12
2
Solved
I'm trying to rebuild some preprocessing I have done before in Gimp, using OpenCV. The first stage is a Sobel filter for edge detection. It works very well in Gimp:
Now here is my attempt with O...
2
I need to find the iris edges, the input images that I use is not a fully rounded iris, sometimes it might be covered by the eyelid.
I found a summary of a journal article to find the iris even its...
Renaissance asked 4/6, 2016 at 16:29
1
© 2022 - 2024 — McMap. All rights reserved.