- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我不确定如何从屏幕坐标转换为世界坐标。我正在使用 VisPy,我想在 3D 中实现光线追踪和拾取功能。
我根据立方体示例准备了一些代码。下面的代码通过更改 z 值并打印 3D 坐标(在 ''on_mouse_press '' 方法中)通过屏幕发送粗射线。但是结果不正确。如果我单击立方体右上角的某个位置,应该会打印出射线 (3,3,3),但事实并非如此。有人可以帮我解决这个问题吗?
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vispy: gallery 50
"""
This example shows how to display 3D objects.
You should see a colored outlined spinning cube.
"""
import numpy as np
from vispy import app, gloo
from vispy.util.transforms import perspective, translate, rotate
vert = """
// Uniforms
// ------------------------------------
uniform mat4 u_model;
uniform mat4 u_view;
uniform mat4 u_projection;
uniform vec4 u_color;
// Attributes
// ------------------------------------
attribute vec3 a_position;
attribute vec4 a_color;
attribute vec3 a_normal;
// Varying
// ------------------------------------
varying vec4 v_color;
void main()
{
v_color = a_color * u_color;
gl_Position = u_projection * u_view * u_model * vec4(a_position,1.0);
}
"""
frag = """
uniform mat4 u_model;
uniform mat4 u_view;
uniform mat4 u_normal;
uniform vec3 u_light_intensity;
uniform vec3 u_light_position;
varying vec3 v_position;
varying vec3 v_normal;
varying vec4 v_color;
void main()
{
gl_FragColor = v_color;
}
"""
# -----------------------------------------------------------------------------
def cube(num_of_cubes):
"""
Build vertices for a colored cube.
V is the vertices
I1 is the indices for a filled cube (use with GL_TRIANGLES)
I2 is the indices for an outline cube (use with GL_LINES)
"""
for i in range(0,num_of_cubes):
# Vertices positions
v = np.array([[1, 1, 1], [-1, 1, 1], [-1, -1, 1], [1, -1, 1],
[1, -1, -1], [1, 1, -1], [-1, 1, -1], [-1, -1, -1]],dtype=np.float32)
v[:,0]=v[:,0]+2.
v[:,1]=v[:,1]+2.
v[:,2]=v[:,2]+2.
# Face Normals
n =np.array([[0, 0, 1], [1, 0, 0], [0, 1, 0],
[-1, 0, 1], [0, -1, 0], [0, 0, -1]],dtype=np.float32)
# Vertice colors
c = np.array([[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1],
[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1]],dtype=np.float32)
V_aux = np.array([(v[0], n[0], c[0]), (v[1], n[0], c[1]),
(v[2], n[0], c[2]), (v[3], n[0], c[3]),
(v[0], n[1], c[0]), (v[3], n[1], c[3]),
(v[4], n[1], c[4]), (v[5], n[1], c[5]),
(v[0], n[2], c[0]), (v[5], n[2], c[5]),
(v[6], n[2], c[6]), (v[1], n[2], c[1]),
(v[1], n[3], c[1]), (v[6], n[3], c[6]),
(v[7], n[3], c[7]), (v[2], n[3], c[2]),
(v[7], n[4], c[7]), (v[4], n[4], c[4]),
(v[3], n[4], c[3]), (v[2], n[4], c[2]),
(v[4], n[5], c[4]), (v[7], n[5], c[7]),
(v[6], n[5], c[6]), (v[5], n[5], c[5])]
)
I1_aux = np.resize(np.array([0, 1, 2, 0, 2, 3], dtype=np.uint32), 6 * (2 * 3))
I1_aux += np.repeat(4 * np.arange(2 * 3, dtype=np.uint32), 6)
I2_aux = np.resize(
np.array([0, 1, 1, 2, 2, 3, 3, 0], dtype=np.uint32), 6 * (2 * 4))
I2_aux += np.repeat(4 * np.arange(6, dtype=np.uint32), 8)
if i==0:
V=V_aux
I1=I1_aux
I2=I2_aux
else:
V=np.vstack((V,V_aux))
I1=np.vstack((I1,I1_aux+i*24))
I2=np.vstack((I2,I2_aux+i*24))
return V, I1, I2
# -----------------------------------------------------------------------------
class Canvas(app.Canvas):
def __init__(self):
app.Canvas.__init__(self, keys='interactive', size=(800, 600))
num_of_cubes=1 #number of cubes to draw
self.V, self.filled, self.outline = cube(num_of_cubes)
self.store_pos=np.array((0,0)) #for mouse interaction
self.vert_data=np.vstack(self.V[:,0])
self.V_buf=np.vstack(self.V[:,0])
self.V_buf.dtype=[('a_position',np.float32,3)]
self.vert_buf=gloo.VertexBuffer(self.V_buf)
self.N_buf=np.vstack(self.V[:,1])
self.N_buf.dtype=[('a_normal',np.float32,3)]
self.norm_buf=gloo.VertexBuffer(self.N_buf)
self.C_buf=np.vstack(self.V[:,2])
self.C_buf.dtype=[('a_color',np.float32,4)]
self.colo_buf=gloo.VertexBuffer(self.C_buf)
self.filled_buf=gloo.IndexBuffer(self.filled.flatten())
self.outline_buf=gloo.IndexBuffer(self.outline.flatten())
self.program = gloo.Program(vert, frag)
self.translate = 1
#self.vert_buf=gloo.VertexBuffer(self.vertices.flatten())
self.program.bind(self.vert_buf)
self.program.bind(self.norm_buf)
self.program.bind(self.colo_buf)
self.view = translate((0, 0, -10))
self.model = np.eye(4, dtype=np.float32)
gloo.set_viewport(0, 0, self.physical_size[0], self.physical_size[1])
self.projection = perspective(45.0, self.size[0] /
float(self.size[1]), 2.0, 10.0)
self.program['u_projection'] = self.projection
self.program['u_model'] = self.model
self.program['u_view'] = self.view
self.theta = 0
self.phi = 0
gloo.set_clear_color('white')
gloo.set_state('opaque')
gloo.set_polygon_offset(1, 1)
self._timer = app.Timer('auto', connect=self.on_timer, start=True)
self.show()
self.t=0
# ---------------------------------
def on_timer(self, event):
self.update()
# ---------------------------------
def print_mouse_event(self, event, what):
modifiers = ', '.join([key.name for key in event.modifiers])
print('%s - pos: %r, button: %s, modifiers: %s, delta: %r' %
(what, event.pos, event.button, modifiers, event.delta))
def on_mouse_press(self, event):
self.print_mouse_event(event, 'Mouse press')
#convert to NDC
left=event.pos[0]*2/self.size[0]-1
bottom=(self.size[1]-event.pos[1])*2/self.size[1]-1
z_clip=np.linspace(-1.,1.,100)
for val in z_clip:
aux=np.dot(np.dot(np.linalg.inv(self.view),np.linalg.inv(self.projection)),np.array((left,bottom,val,1.)))
pos3d=aux/aux[3]
print(pos3d)
def on_mouse_wheel(self, event):
self.translate -= event.delta[1]
self.translate = max(-1, self.translate)
self.view[3,2]=-self.translate
self.program['u_view'] = self.view
self.update()
def on_draw(self, event):
gloo.clear()
# Filled cube
gloo.set_state(blend=False, depth_test=True, polygon_offset_fill=True)
self.program['u_color'] = 1, 0, 1, 1
self.program.draw('triangles', self.filled_buf)
# Outline
gloo.set_state(polygon_offset_fill=False, blend=True, depth_mask=False)
gloo.set_depth_mask(False)
self.program['u_color'] = 0, 0, 0, 1
self.program.draw('lines', self.outline_buf)
gloo.set_depth_mask(True)
# -----------------------------------------------------------------------------
if __name__ == '__main__':
c = Canvas()
app.run()
最佳答案
屏幕上的一个点击点映射到场景中的一条线。
view.scene.transform
中的对象表示场景和屏幕坐标之间的映射。 .map(points)
将点从场景转换到屏幕。 .imap(points)
从屏幕坐标映射回世界坐标。
获取你的屏幕点对应的线。您可以在屏幕上映射一个点,并在 z 中从屏幕偏移另一个点:
def get_view_axis_in_scene_coordinates(view):
import numpy
tform=view.scene.transform
w,h = view.canvas.size
screen_center = numpy.array([w/2,h/2,0,1]) # in homogeneous screen coordinates
d1 = numpy.array([0,0,1,0]) # in homogeneous screen coordinates
point_in_front_of_screen_center = screen_center + d1 # in homogeneous screen coordinates
p1 = tform.imap(point_in_front_of_screen_center) # in homogeneous scene coordinates
p0 = tform.imap(screen_center) # in homogeneous screen coordinates
assert(abs(p1[3]-1.0) < 1e-5) # normalization necessary before subtraction
assert(abs(p0[3]-1.0) < 1e-5)
return p0[0:3],p1[0:3] # 2 point representation of view axis in 3d scene coordinates
我把它改得更接近你想要的;您需要将 screen_center 替换为单击的点。请注意,我这样做是为了正交投影;认为它也适用于透视,但尚未测试。
关于python - 如何从 Vispy 中的屏幕坐标获取世界坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33942728/
我有两个 3d numpy 数组,我试图通过 vispy 3d 散点图以两种不同的颜色绘制它们。 我已经熟悉你如何通过 scatter 在 vispy 上设置数据了: scatter.set_da
从我在 VisPy 库中看到的所有示例代码/演示中,我只看到人们绘制多行的一种方式,例如: for i in range(N): pos = pos.copy() pos[:, 1]
我编写了一个脚本来模拟流行病的演变(带有图表和散点图)。我尝试了几个库来实时显示结果(8 个国家 x 500 个粒子): Matplotlib(不够快) PyQtGraph(更好但仍然不够快) Ope
从 examples/basics/visuals/graphy.py 开始,我尝试显示直方图但失败了: from vispy import app, visuals import wx import
我正在使用空间光调制器(SLM),它作为第二个监视器连接。 SLM 具有 tzo 接收 8 位灰度图像。我目前正在使用 vispy 在 SLM 上显示图像,但如果它们显示正确,我就不支持。是否有可能使
我玩过this example的 VisPy 来显示一个旋转的立方体。有没有办法加载图像(例如 png)并将其显示为立方体的一个面? 最佳答案 您可以使用 imageio 读取图像数据(通过 pip
我不确定如何从屏幕坐标转换为世界坐标。我正在使用 VisPy,我想在 3D 中实现光线追踪和拾取功能。 我根据立方体示例准备了一些代码。下面的代码通过更改 z 值并打印 3D 坐标(在 ''on_mo
我是 VisPy 的初学者。 我想做的就是: 单击该点,该点将改变颜色并打印该点的位置 (x,y,z)。 但我找不到如何做到这一点。 这是我的代码。 import numpy as np import
我有一个应用程序,我在其中添加了一个使用 vispy 和 scipy(对于 Delaunay)绘制数据的模块。当我在 Python(Windows 上为 3.4 x64)解释器中运行时,它工作正常,但
我对 Python 以及其中包含的所有奇迹还比较陌生,我正在尝试创建一个能够以 3D 方式显示大量数据点的程序。问题是,使用 matplotlib 的传统路线非常慢,在屏幕上旋转数据非常不稳定和笨重。
是否可以保存使用 VisPy 制作的图像?也许使用 vispy.io.imsave 或 vispy.write_png? 此外,可以使用 vispy.mpl_plot 在 vispy 中绘制 ma
嘿,我想在我的 pyqt5 生成的 Gui 中嵌入 vispy canvas 的输出窗口。我对 vispy 了解不多,所以请提前致谢。 最佳答案 只要vispy是使用Qt做后台的,就必须使用.nati
由于服务器 GPU 的限制,我们不能使用 K 在 VPS 上渲染隐式方程,下面是我们用来从 中的方程生成 3D 模型的示例代码玛雅维: import numpy as np from mayavi i
我正在尝试使用 Vispy 以 3D 形式旋转纹理四边形,但我似乎无法解决。该代码不会产生任何特定错误,但它根本不旋转。我是 Vispy 的新手,也许我的代码中缺少一些重要的组件。也许你们中的一些人之
我想知道使用 VisPy 是否可能,或者我是否应该开始寻找其他替代方案。 事情是这样的 - 我正在写一篇关于狭义相对论中一些类似悖论的情况的本科论文。我正在做的基本上就是这样,我将在 python 中
我正在尝试将一个 vispy 图(更具体地说,一个 Vispy SceneCanvas)作为 QWidget 嵌入到 PyQt4 中。我想答案应该是这样的: from PyQt4.QtCore imp
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 7 年前。 Improve this ques
有关 vispy 的一些问题提到在添加小部件时使用 canvas.native。在qt设计器中作为占位符制作的小部件如何用于vispy? 这个想法就是由此而来 canvas = vispy.app.C
我是一名优秀的程序员,十分优秀!