Skip to main content

Questions tagged [edge-detection]

Edge detection is a tool in computer vision used to find discontinuities (edges) in images or graphs. Use this tag when asking about finding and manipulating edges or edge interaction.

edge-detection
0 votes
0 answers
19 views

How can I detect these specific road marking patterns? [closed]

I am working on a project where I need to detect yellow junction boxes on the road from a vehicle's dashcam feed. I am considering two approaches: Edge Detection: This method might not be reliable if ...
Rohan Bhavale's user avatar
2 votes
2 answers
111 views

How to detect edges in image using python

I'm having problems trying to detect edges in images corresponding to holes in a glass sample. Images look like this: images Single sample: Each image contains part of a hole that was cut into a ...
ladies's user avatar
  • 23
2 votes
1 answer
98 views

Horizontal Line detection and measure distance in between with OpenCV

Hi I'm quite new in OpenCV, I am currently trying to detect horizontal lines in an image using HoughLinesP function in opencv, in order to calculate the ratio between x and y. The line detection ...
by42's user avatar
  • 23
0 votes
0 answers
70 views

Create stroke around transparent image

I want to create a die-cut sticker design. In my app, user should be able to upload any png file with transparent background. App should create double border around the image, to look like a die-cut ...
Dominik's user avatar
  • 111
-2 votes
2 answers
223 views

Detecting a contour in a noisy image

I am trying to detect the contour of the die edge in the picture, but there is an obstacle on the right top of the image. Original picture:https://pan.quark.cn/s/0cdf6fe9784f Whole dataset: https://...
cadd9's user avatar
  • 7
0 votes
0 answers
26 views

OpenCV - Detect triangles within detected rectangle in real-time video

For a project I want to detect the edges of triangular shapes within a detected rectangular object (tray) in real-time on a Raspberry Pi IR camera, for the follow up to a next step. For now I've ...
Ronald's user avatar
  • 1
2 votes
0 answers
67 views

How do I calculate the width of hot steel from a row of pixel values?

Background:I want to get the width of the hot steel by manipulating a row of pixel values ,such as the green line in the picture.This pixel value change has been processed to be between 0 and 255. ...
Lishumuzixin's user avatar
0 votes
1 answer
43 views

Cytoscape setting help for directed edges

I import a network.txt file from ARACNe, which has three columns and dozens of rows. For example, Regulator Target MI Gene1 Gene2 0.X My impression from the above file is that the edges ...
Daniel Lee's user avatar
0 votes
2 answers
47 views

Image not uploading using flask (shows no file selected when I click upload). IDE shows 302

I am learning flask, trying to write code for edge detection in an image, and let users upload the image, using flask. I believe I'm unable to upload the image correctly, it shows 'no file selected' ...
Sibtain's user avatar
0 votes
0 answers
139 views

How to find contours from a Sobel edge detection image

I am doing this to apply Sobel edge detection to an image # Sobel edge detection grad_x = cv2.Sobel(blurred_image, cv2.CV_64F, 1, 0, ksize=3) grad_y = cv2.Sobel(blurred_image, cv2.CV_64F, 0, 1, ksize=...
RedRum69's user avatar
-1 votes
1 answer
87 views

Unable to get left and right road edge

I am trying to find the points representing the left and right edge of a road mask(binary image). I have tried using contour detection but it is giving contour of whole image(including upper and lower ...
Pratham's user avatar
  • 11
1 vote
2 answers
73 views

edge detection and selection with with brightness differences

I have a liquid bow wave that is recorded by a high-speed camera. This gives me a lot of images that I want to analyze automatically. I want to determine the outer contour of the liquid and preferably ...
Celotos's user avatar
  • 21
0 votes
0 answers
35 views

Edge detection shader (Passing 3 vertex positions to the shader program)

I've been trying to render the effect of having triangle faces in one solid colour, and their edges another, ideally I wanted a soft glow of a different colour on the edges. I looked around for some ...
Dedsi's user avatar
  • 1
1 vote
2 answers
194 views

Extracting vector line segments from an image

I'm trying to find the edges on satellite imagery. While I've tried using canny edge detection, I've found much better results by passing the imagery through a structured random forests model ...
ZArmstrong's user avatar
0 votes
1 answer
149 views

Implementing Harris Corner detector, by following standard material, it ends up detecting edges

Hi Thanks for your attention, I'm trying to implement Harris Corner Detection Algorithm, and have been following the standard Algorithm given on most souces one of them being Wiki Page I follow all ...
Pawan Nirpal's user avatar

15 30 50 per page
1
2 3 4 5
73