如果我们只有图像,如何发现面积图数据?
面积图(图像)有几个数据系列,这些数据系列用不同的颜色绘制。我们知道图像的大小和x轴上每个标签的坐标,是否可以通过图像识别来发现y轴的系列?有人可以透露一些信息吗?
The area chart (image) has a few data series, which are charted with different colors. We know the image size and co-ordinates of each lable on x-Axis, is it possible to discover the series of y-Axis by image recongition? Can anybody shed some light?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你知道 y 轴刻度,那应该是可以的。
要进行屏幕抓取,您可以首先使用每个系列的滤色器来过滤图像。
第二步是收集临时图像中所有剩余像素的坐标,并将它们转换为所需的比例。
给定
您可以计算该像素的数据(伪代码)
然后,如果您的系列线进行一些插值大于一个像素宽(例如获取单列左右所有像素的平均数据)。
更新1:用于简单颜色过滤器过滤红色图表的伪代码
If you know the y-axis scale, it should be possible.
To screenscrape, you could first filter your image with a color filter for each of the series.
Second step would be to gather the coordinates of all remaining pixels in your temporary image and transform them these to the scale needed.
given
you could calculate the data for this pixel (pseudocode)
And afterwards, do some interpolation if your series line is more then one pixel wide (for example get the average data for all pixels in a single column or so).
Update1: Pseudocode for naive color filter filtering out red charts