简体   繁体   English

使用霍夫变换检测深色线条和末端线条

[英]Detect lines with dark color and end lines using Hough Tranform

i'm trying to detect vertical lines where the pixels RGB has every color in less than 100 |Dark|我试图检测垂直线,其中像素 RGB 的每种颜色都小于 100 |暗| , here is an example RGB (100,100,100). ,这是一个示例 RGB (100,100,100)。

import numpy as np
import cv2

img = cv2.imread('testD2.png')

lower = np.array([0, 0, 0], dtype = "uint8")
upper = np.array([100,100,100], dtype = "uint8")
mask = cv2.inRange(img, lower, upper)
img = cv2.bitwise_and(img, img, mask = mask)

gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
edges = cv2.Canny(gray,50,150,apertureSize = 3)
minLineLength=img.shape[1]-300
lines = cv2.HoughLinesP(image=edges,rho=0.02,theta=np.pi/500, threshold=10,lines=np.array([]), minLineLength=minLineLength,maxLineGap=100)

if lines is not None:
    a,b,c = lines.shape
    for i in range(a):
        cv2.line(img, (lines[i][0][0], lines[i][0][1]), (lines[i][0][2], lines[i][0][3]), (0, 0, 255), 3, cv2.LINE_AA)



cv2.imshow('edges', edges)
cv2.imshow('result', img)

cv2.waitKey(0)
cv2.destroyAllWindows()

i have to change the color of the end lines too,i mean the first and the last line.我也必须改变结束线的颜色,我的意思是第一行和最后一行。

这是图像

Using cv2.findContours() may work better:使用cv2.findContours()可能效果更好:

You can use cv2.findContours() and cv2.boundingRect() to identify the bars and return the information (x,y,h,w) that describes these rectangles.您可以使用cv2.findContours()cv2.boundingRect()来识别条形并返回描述这些矩形的信息 (x,y,h,w)。 Here are a few examples.这里有一些例子。

If you want to only identify the lines and mark them you can do:如果您只想识别线条并标记它们,您可以执行以下操作:

import cv2
import numpy as np

img = cv2.imread('oVKlP.png')
g = cv2.imread('oVKlP.png',0)
(T, mask) = cv2.threshold(g, 100, 255, cv2.THRESH_BINARY_INV)

_, contours, hierarchy = cv2.findContours(mask.copy(), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)

img = cv2.drawContours(img.copy(), contours, -1, (0,255,0), 2)

cv2.imwrite('just_contours.png',img)

Result:结果:

在此处输入图片说明

If you want to display some of the line info like maybe the x value for a side of the bar you can do:如果您想显示一些行信息,例如可能是条形一侧的x value ,您可以执行以下操作:

import cv2
import numpy as np

img = cv2.imread('oVKlP.png')
g = cv2.imread('oVKlP.png',0)
(T, mask) = cv2.threshold(g, 100, 255, cv2.THRESH_BINARY_INV)

_, contours, hierarchy = cv2.findContours(mask.copy(), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)

# bounds with x,y,h,w for each bar
bounds = [cv2.boundingRect(i) for i in contours]
bounds.reverse()

img = cv2.drawContours(img.copy(), contours, -1, (0,0,255), 2)

font = cv2.FONT_HERSHEY_SIMPLEX

n = 20
b = 0

for (x,y,w,h) in bounds:
    cv2.circle(img, (x,y+n+10), 5, (0, 255, 0), -1, cv2.LINE_AA)
    cv2.putText(img, '{0}'.format(x), (x-b, y+n), font, .6, (255, 0, 255), 2, cv2.LINE_AA)
    n+=33
    b+=3

cv2.imwrite('fancy_marks.png',img)

Result:结果:

在此处输入图片说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM