image-morphology Questions
2
I have the following image:
and I would like to fill in its contours (i.e. I would like to gap fill the lines in this image).
I have tried a morphological closing, but using a rectangular kerne...
Cathead asked 21/1, 2015 at 23:4
2
Solved
I am working on maze solving using Image Processing and NetworkX search algroithm and need to find the shortest connecting path between two points on those lines.
#Solving Maze Using Image Proces...
Squirmy asked 26/6, 2018 at 13:13
2
Solved
This is my first post on Stack Overflow, so I am sorry if the problem isn't defined enough.
I am currently working on extracting table data from images and I need a way to dilate the text only in ...
Alizaalizarin asked 26/11, 2019 at 11:36
2
Solved
As the following piece of code shows, the tensorflow tf.nn.dilation2D function doesn't behave as a conventional dilation operator.
import tensorflow as tf
tf.InteractiveSession()
A = [[0, 0, 0, 0...
Monocarpic asked 14/2, 2019 at 9:19
1
Solved
Why is the structuring element asymmetric in OpenCV?
cv2.getStructuringElement(cv2.MORPH_ELLIPSE, ksize=(4,4))
returns
array([[0, 0, 1, 0],
[1, 1, 1, 1],
[1, 1, 1, 1],
[1, 1, 1, 1]], dtype...
Newtonnext asked 4/12, 2017 at 14:31
2
Solved
After some simple preprocessing I am receiving boolean mask of segmented images.
I want to "enhance" borders of the mask and make them more smooth. For that I am using OPEN morphology filter wi...
Kiefer asked 30/12, 2015 at 10:10
1
© 2022 - 2024 — McMap. All rights reserved.