Reputation: 11
I use canny to detect edge.But, as the quality of image is bad, a lot of noise is as below:
I just want the rectangle edges. As the edge I want to detect is so regular(like bricks). I wonder if there were some image process algorithms that could help me?
Note that some edge in image is so week, use a GaussianBlur may make these edge hard to be detected.
Thanks for all reply.
Upvotes: 0
Views: 320
Reputation:
Just a hint: it could be useful to strongly blur the image horizontally and vertically to obtain "clean" rows. From this you could reconstruct the grid and possibly inspect every cell.
Upvotes: 1