- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些灰度图像,如下所示:
它们是具有不同标记样式的灰度线形图(可以是正方形,圆形,星形,点形。等等)。
我想获取标记的坐标。我计划将数据线读取为多段线,并使用角点检测算法检测顶点,但是从我一直以来的 Angular 来看,角点检测更适合3D空间。
我的问题是:是否可以将折线图读取为折线图并提取顶点的坐标?有没有办法使用霍夫变换来使用opencv检测折线?
提前致谢
编辑
原始图像如下:
最佳答案
这个怎么样?
提取行
import numpy as np
import cv2
img = cv2.imread('origin.png')
## 1. choose HSV
# rough hsv values in this image.
# grid(gray)=(0, 0, 174)
# border(black)=(0, 0, 15)
# back ground(white)=(0, 0, 254)
# hsv value including border and back ground
hsv_min = (0, 0, 0) # Lower end of the HSV range
hsv_max = (10, 10, 255) # Upper end of the HSV range
# Transform image to HSV color space
hsv = cv2.cvtColor(img, cv2.COLOR_BGR2HSV)
# Threshold based on HSV values
color_thresh = cv2.inRange(hsv, hsv_min, hsv_max)
# Invert the image
invert = cv2.bitwise_not(color_thresh)
## If you need perform skeletonization, use skimage.
#import skimage
#from skimage.morphology import skeletonize
#color_thresh = skeletonize(skimage.img_as_float(color_thresh))
#color_thresh = color_thresh.astype('uint8') * 255
cv2.imwrite("lines.png", invert)
## 2. cv2.HoughLinesP
# Actually, parameter tuning will be necessary
minLineLength = 100
maxLineGap = 100
lines = cv2.HoughLinesP(color_thresh, 2, np.pi/180,70,minLineLength,maxLineGap)
# lines = [[[319 321 431 188]], ... ,[[ 83 283 195 399]]]
lines = [x.flatten() for x in lines]
# lines = [[319, 321, 431, 188], ... ,[ 83, 283, 195, 399]]
# sort by first element
lines = sorted(lines, key=lambda x : x[0])
# drow lines
for line in lines:
x1,y1,x2,y2 = line
cv2.line(img,(x1,y1),(x2,y2),(0,255,0),2)
## 3. Find the intersection of two lines
def cross_point(segment_p1p2, segment_p3p4):
'''
Intersection point of two lines
p1p2:{p1(a,b)、p2(c,d)}
p3p4:{p3(e,f)、p4(g,h)}
'''
a = segment_p1p2[0]
b = segment_p1p2[1]
c = segment_p1p2[2]
d = segment_p1p2[3]
e = segment_p3p4[0]
f = segment_p3p4[1]
g = segment_p3p4[2]
h = segment_p3p4[3]
dev = (d-b)*(g-e)-(c-a)*(h-f)
d1 = f*g-e*h
d2 = b*c-a*d
xp = (d1*(c-a)-d2*(g-e))/dev
yp = (d1*(d-b)-d2*(h-f))/dev
return (xp, yp)
# draw circles
for i in range(len(lines)-1):
x, y = cross_point(lines[i], lines[i+1])
cv2.circle(img,(int(x),int(y)), 5, (255,0,0), 2)
cv2.imwrite("out.png",img)
# [81, 281, 201, 406] and [81, 279, 198, 400] are overlapping
# [435, 184, 557, 214] and [451, 187, 558, 213] are overlapping
lines = [[81, 281, 201, 406],
[81, 279, 198, 400],
[193, 405, 313, 327],
[312, 329, 437, 180],
[435, 184, 557, 214],
[451, 187, 558, 213]]
import math
def is_close(data1, data2, threshold=10):
'''
e.g. data1=[x, y] , data1=[x, y, z]
`threshold` is euclidean distance.
calculate the distance between two points, and determine if they are in the neighborhood.
'''
return math.sqrt(sum((d1-d2)**2 for d1, d2 in zip(data1, data2))) < threshold
# sort by first element
lines = sorted(lines, key=lambda x : x[0])
chained_lines=[lines[0]]
index=0
for i in range(len(lines)):
if i < index:
continue
end_of_line = lines[i][-2:]
# generator which return the index of the chained elements
y = (i for i, v in enumerate(lines) if is_close(end_of_line, v[:2]))
# get the index of the first element
chained_index = next(y, None)
if chained_index != None and chained_index > index:
index = chained_index
chained_lines.append(lines[index])
print(chained_lines)
import numpy as np
import cv2
img = cv2.imread('origin.png')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
ret, bin_img = cv2.threshold(gray, 1, 255, cv2.THRESH_BINARY_INV)
minLineLength = 100
maxLineGap = 100
lines = cv2.HoughLinesP(bin_img, 2, np.pi/180,70,minLineLength,maxLineGap)
lines = [x.flatten() for x in lines]
# drow lines
for line in lines:
x1,y1,x2,y2 = line
cv2.line(img,(x1,y1),(x2,y2),(0,255,0),2)
cv2.imwrite("out2.png",img)
关于python - 使用opencv检测图像中折线的顶点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52017123/
有没有办法将多个线段视为 1 条线? IE:我将鼠标悬停在其中一个上,两者都会突出显示,并且切换图例中的可见性将隐藏这两个部分。 http://jsfiddle.net/rayholland/HSvB
我正在使用 geojson 创建折线。我的geojson的格式如下: var myLines = [{ "type": "LineString", "coordinates": [[-
我对 matlab 和图像处理很陌生 我想要实现的是检测图像中的不规则线条。例如,在下图中,有 4 条折线: 我的目标是得到一组代表这 4 条不规则线/折线的像素点。像这样。 我已经通读了一些主题,例
本章响应小伙伴的反馈,除了算法自动画连接线(仍需优化完善),实现了可以手动绘制直线、折线连接线功能。 请大家动动小手,给我一个免费的 Star 吧~ 大家如果发现了 Bug,欢迎来提 Is
这一章把直线连接改为折线连接,沿用原来连接点的关系信息。关于折线的计算,使用的是开源的 AStar 算法进行路径规划,启发方式为 曼哈顿距离,且不允许对角线移动。 请大家动动小手,给我一个免费
话接上回《前端使用 Konva 实现可视化设计器(13)- 折线 - 最优路径应用【思路篇】》,这一章继续说说相关的代码如何构思的,如何一步步构建数据模型可供 AStar 算法进行路径规划,最终画出节
是否可以使用水平线性渐变描边 SVG 多段线,其中渐变的角度在每个多段线顶点发生变化?它看起来像这样: 最佳答案 看看tubefy以色列艾森伯格。目前 svg 中没有任何内容可以准确地以声明方式提供您
我已经实现了一些代码,可以在单击 ListView 项时从 URL 加载图像;这已经用“虚拟”图像进行了测试,并且在 ImageView 对象中显示的图像没有任何问题。 但是,我真正想做的是通过 UR
我正在编写一个函数,用于在 mouseover 和 mouseout 上添加和删除 Mapbox polyline。我的 mouseover 可以正常工作,但我似乎不知道如何在 mouseout 上访
我使用此代码在 OSM 上有一些自定义折线 var polyline1 = [ [44.772142, 17.208980], [44.774753, 17.20764
我的应用程序是实时跟踪器,多个用户登录并通过将他们的坐标发送到我们的网络服务来更新他们的位置,然后每 2 分钟回调一次,让我们在我的 MapView 上显示所有用户。 每次我在 connectionD
我想知道是否有一种方法可以通过单击来突出折线。像这样: Before click After click 最佳答案 您可以使用折线两次。第一次折线更宽并且笔划不透明度为“0”。当您将鼠标悬停在该组上时
我需要显示从 A 到 B 的不同折线。因此,这些线应该彼此区分。我曾尝试使用带有高度参数的推点函数来设置折线。然而它仍然在地面上。我插入的最后一条折线会覆盖前一条折线。高度值适用于标记,但我想将其应用
我正在尝试向 svg 多段线添加类似叠加的效果。基本目标是使单击该线变得容易,并且由于该线太细,我想添加一个背景叠加层,当鼠标悬停在上面时会亮起。 我使用多边形尝试了以下方法,但这看起来很乏味。 (线
如何在 Google map 中绘制圆弧折线? 我已经用过this创建曲线折线的代码。 下面是绘制曲线折线的方法: private void showCurvedPolyline (LatLng p1
背景: 开发使用 Android Google Map v2 的原生 Android 应用,使用 android.support.v4.app.FragmentActivity。在 Android v
如何使用 JavaScript 将坐标添加到现有的 SVG 折线? 我正在使用 IE 9(在 .hta 文件中)并且需要能够动态地将新点附加到折线。目标是能够创建折线图。我提前道歉,我完
如何在 JavaScript 中拆分数据数组 {x:30, y:45, x:36, y:49} 进入表格 [30, 45, 36, 49] ? 我需要此表单才能将坐标传递给 SVG 折线。我找到了一个
在角度 6 中。我正在为 agm-polyline 使用流动代码。 我想在 agm-polyline 中添加箭头符号(折线)( https://developers.google.com/maps/d
我在 map 上做了路线。使用一些坐标生成的路线,这些坐标完成了附加信息(速度)。我希望当路线悬停时,将出现一个工具提示并显示这些坐标处的信息(速度)。我很困惑如何显示速度的工具提示。 Po
我是一名优秀的程序员,十分优秀!