Skip to main content

Questions tagged [edge-detection]

Edge detection is the process of identifying points in an image, where image brightness changes sharply.

14 votes
3 answers
2k views

Seeing edges where there are no edges

The human eye is able to detect a square inside the square in the following two images, even though there are no obvious edges and no obvious local changes in the density of dots. GPT4o believes to ...
Hans-Peter Stricker's user avatar
0 votes
0 answers
24 views

Detecting a large horizontal band in the center of an image

I have a small (228x228) grayscale image that I have created by segmenting the original image and converting it to grayscale after applying colors to the segment. I want to know possible approaches I ...
requiemman's user avatar
4 votes
1 answer
276 views

Detect Longest Vertical Lines (Edges) in an Image

I have a task in image processing, which need to detect vertical lines from matrix. For example, there is a pair of white and black vertical lines segmenting the picture below. I need to find it. So I ...
Jun Yang's user avatar
1 vote
0 answers
71 views

Chebyshev filter analog in computer vision?

Looking at the basic characteristics of a Chebyshev Filter, I was wondering if there were any analogous type filters in Computer Vision? The way that it can minimize the error between the idealized ...
Student CS's user avatar
4 votes
1 answer
787 views

OpenCV 2 Connect Incomplete Contours edges

I have to connect the unfinished edges of the contours in the red color bounding box. I used distance transform, watershed, and morphology, but still, edges are not connecting. ...
user67438's user avatar
4 votes
2 answers
125 views

Separating dominoes pieces from one another and counting them

I Have a picture of Dominoes on a table, which is noisy. I am trying to do the following: removing the background. counting how many dominoes pieces are there. identifying what each piece represent. ...
Sohaib Segueni's user avatar
1 vote
0 answers
38 views

A mathematical justification of discontinuity detection using STFT

I'm trying to detect rapid changes in a one-dimensional signal say $[0,1]\ni t \mapsto f(t) \in [-1,1]$. By rapid changes, I mean corner points, edges, or sharp transitions at a point for example the ...
Zeno San's user avatar
  • 127
1 vote
1 answer
53 views

Segment Image of Small Elements on Neutral Background

I have a 8 bit gray level image where if the value = 122 it means no information, value = 0 means highly negative, and value = 255 means highly positive. I want to connect as many positive information ...
MistaZ's user avatar
  • 13
0 votes
2 answers
62 views

Removing tessellating interference patterns from images

The microscopy image below is corrupted by an irregular checkerboard-like grid. I attempted running 2D-FFT on the image, but was unable to isolate the frequencies which cause the pattern. How would I ...
Jason Adhinarta's user avatar
0 votes
1 answer
147 views

Segmenting dark spots from a light background?

I need to perform automatic segmentation of dark blue spots on light yellow paper. Here's a very simple example: In this case, a simple threshold based on hue or brightness works well. But here are ...
Hundley's user avatar
  • 101
1 vote
1 answer
197 views

How many directions are there in the Non Maximum Suppression part of the Canny Edge Detector

In the Non-maximum suppression algorithm, each pixel has a total of 4 directions since there are 8 neighboring pixels. But why there is not 8 directions instead, please? I see below there are 8 ...
Avv's user avatar
  • 113
1 vote
0 answers
134 views

Why is Envelope noisy even after filtering and achievement of SNR gain (-6dB SNR to 14dB snr)?

A noisy signal with 500 MHz bandwidth, with negative SNR, when filtered to 6 MHz bandwidth, should attain a theoretical SNR gain of 20 dB. So if the original signal has -6 dB SNR, after filtering we ...
UserID_107's user avatar
4 votes
1 answer
139 views

Interpreting results of Sobel Edge Detection

I am implementing A No-Reference Perceptual Blur Metric paper. Somewhere in the prep steps they mention the use of vertical Sobel filter for finding vertical edges. The algorithm is summarized in Fig....
Howisitgoing's user avatar
1 vote
1 answer
412 views

Removing dark borders in Image Stitching for Panorama

I am working on a Matlab code for panoramic image stitching for multiple image frames and getting satisfactory results however there are always dark regions surrounding the stitched images as ...
malik12's user avatar
  • 488
2 votes
1 answer
218 views

Implementation of Deriche filter

The Canny edge detector is expressed by the derivative of the Gaussian. Its practical implementation involves the Gaussian filter, then the Sobel filter to calculate the gradient in both directions. ...
edgeboyy's user avatar

15 30 50 per page
1
2 3 4 5
11