- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我需要沿着一条线获取像素值,我使用的是 Python3 和 Pillow。在 opencv 中有这样的东西 LineIterator这将返回两点之间所有适当的像素,但我在 Pillow 的文档中没有找到类似的东西。
我使用 Pillow 是因为我最初看到了 this帖子说 python3 没有 opencv 支持,我知道它是从 2012 年开始的,但这似乎被 this 证实了我认为这是今年的帖子,因为帖子上没有年份。但是当我运行 pip3.2 search opencv 我可以看到一个 pyopencv 但我无法安装它,它说它找不到合适的版本(可能是 python2.x 到 python3.x 的问题)。
我的首选解决方案排序如下:
最佳答案
我最终选择了基于 Xiaolin Wu's line algorithm 的直接 python 解决方案
def interpolate_pixels_along_line(x0, y0, x1, y1):
"""Uses Xiaolin Wu's line algorithm to interpolate all of the pixels along a
straight line, given two points (x0, y0) and (x1, y1)
Wikipedia article containing pseudo code that function was based off of:
http://en.wikipedia.org/wiki/Xiaolin_Wu's_line_algorithm
"""
pixels = []
steep = abs(y1 - y0) > abs(x1 - x0)
# Ensure that the path to be interpolated is shallow and from left to right
if steep:
t = x0
x0 = y0
y0 = t
t = x1
x1 = y1
y1 = t
if x0 > x1:
t = x0
x0 = x1
x1 = t
t = y0
y0 = y1
y1 = t
dx = x1 - x0
dy = y1 - y0
gradient = dy / dx # slope
# Get the first given coordinate and add it to the return list
x_end = round(x0)
y_end = y0 + (gradient * (x_end - x0))
xpxl0 = x_end
ypxl0 = round(y_end)
if steep:
pixels.extend([(ypxl0, xpxl0), (ypxl0 + 1, xpxl0)])
else:
pixels.extend([(xpxl0, ypxl0), (xpxl0, ypxl0 + 1)])
interpolated_y = y_end + gradient
# Get the second given coordinate to give the main loop a range
x_end = round(x1)
y_end = y1 + (gradient * (x_end - x1))
xpxl1 = x_end
ypxl1 = round(y_end)
# Loop between the first x coordinate and the second x coordinate, interpolating the y coordinates
for x in range(xpxl0 + 1, xpxl1):
if steep:
pixels.extend([(math.floor(interpolated_y), x), (math.floor(interpolated_y) + 1, x)])
else:
pixels.extend([(x, math.floor(interpolated_y)), (x, math.floor(interpolated_y) + 1)])
interpolated_y += gradient
# Add the second given coordinate to the given list
if steep:
pixels.extend([(ypxl1, xpxl1), (ypxl1 + 1, xpxl1)])
else:
pixels.extend([(xpxl1, ypxl1), (xpxl1, ypxl1 + 1)])
return pixels
关于Python3 Pillow 获取一条线上的所有像素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24702868/
如何迭代(一行)分割函数给我的每个类? 我试过这个: 编辑(抱歉) $("p").attr("class").split(' ').each (function (i,n){alert(n)}
我有一条垂直线和一条水平线,当我动态调整我的 Canvas 父级时,我想调整它们的大小。 (地标) 我希望水平线始终距 Canvas 的左右边界 25 处,距底部边界 13 处。 垂直线也是如此,距上
我有一个 y 变量,我试图在图形的顶部和底部针对两个相关的 x 轴绘制它(例如 y="立方体中的事物数",x1="立方体的边长", x2="立方体的体积")。我在 numpy 数组中有 y、x1、x2
我想画一条简单的水平线,并在这条线 flex 的地方制作动画。我有这个动画的视频。你能给我一些建议如何开始以及我必须使用哪个 js/css 吗? 都是关于矩形底部的线: http://www.stop
我是一名优秀的程序员,十分优秀!