I'm trying to detect lines from a noisy image and these are the steps I'm following:
img= cv2.imread('/content/spec_un45_3900000.jpg',cv2.IMREAD_GRAYSCALE)
img = 255 - cv2.medianBlur(img, 3) #Invert and blur
#Remove white spots from background
kernel = np.ones((1, 2), np.uint8)
opening = cv2.morphologyEx(img, cv2.MORPH_OPEN, kernel,iterations=2)
edges = cv2.Canny(opening,0,100,apertureSize = 3)
cv2_imshow(edges)
#Hough Line detection
lines = cv2.HoughLinesP(image=edges,
rho=1,
theta=np.pi/180,
threshold=100,
lines=np.array([]),
minLineLength=5,
maxLineGap=200)
for i in range(lines.shape[0]):
cv2.line(out,
(lines[i][0][0],
lines[i][0][1]),
(lines[i][0][2],
lines[i][0][3]),
(0,255, 255), 1, cv2.LINE_AA)
I tried the method mentioned in How to detect lines in noisy line images?
Could someone help me debug this/provide a solution?
This isn't a very efficient answer, but it's robust against heavy noise and the kernel filtering idea is useful for single-scale matching (it doesn't handle changes in scale) tasks.
With Original Image (ksize = 201, thresh = 150)
With Last Image (ksize = 51, thresh = 200)
The basic idea is to create a kernel that matches the image/shape you want. Then you can convolve it over the image and look for hotspots. At the end I skeletonize the mask to get rid of thick lines (running hough-lines over the mask hopefully only gets a single line back instead of a bunch).