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 is a part of computer vision where the goal is to find edges in images. This often involves computing derivatives of the image with respect to the coordinates, because intuitively if the difference between two neighboring pixels is high, it is likely that there is an edge in the image. A popular edge detection algorithm is the Canny edge detector. Other edge detection algorithm includes Laplace & Sobel.

Discontinuities in image are likely to correspond to

  • discontinuities in depth
  • discontinuities in surface orientation
  • changes in material properties and
  • variations in scene illumination
1057 questions
-3
votes
1 answer

c# detect areas in map of country

I have a white map of country with black edges of provinces. I want to recognize areas of provinces and keep pixels of each province. Then I would like to color this areas(as polygon) by different colors. I would be grateful if you could help me. I…
mateusz
  • 1
  • 1
-4
votes
1 answer

check sign detection in image processing?

I want to detect position of check mark on paper return relative position in X,Y coordinates. Is there anyway to start this in java coding?
Mohab
  • 109
  • 2
  • 8
-5
votes
1 answer

Remove image background in Matlab

In this example of edge detection: http://www.mathworks.com/help/images/edge-detection.html#buh9ylp-13 How would I remove the gray background in the grayscale image at the beginning?
J.Doe
  • 15
  • 8
-6
votes
1 answer

opencv c++ Edge detection to find edge that the top of it is white and the bottom is black

I am a new learner of opencv,now I want to deal some picture like some card,I want to find its edge,I notice that the bottom edge's bottom is black and its top is white,does opencv has a way to find edge like this?
zyznull
  • 1
  • 3
-9
votes
1 answer

How can I detect the dimensions of an object under an angle in this picture in MATLAB?

I have this image of a battery: I would like to determine the dimensions of the battery (in pixels). The problem I have is that the battery is rotated by an unknown angle. How can I detect the dimensions of this rotated battery? I was thinking of…
1 2 3
70
71