A python module for scientific visualization, analysis of 3D objects and point clouds based on VTK. Check out https://vedo.embl.es for documentation.
Questions tagged [vedo]
7 questions
2
votes
1 answer
How to compute boolean intersection between 3 geometries using vtk?
I'm trying to compute the intersection between 3 geometries using VTK.
I've started with the BooleanOperationPolyDataFilter example and made minor tweaks such as:
Adding a third sphere:
vtkNew sphereSource3;
…

George Profenza
- 50,687
- 19
- 144
- 218
1
vote
1 answer
Vedo 3D-Gyroid structures STL export
I need to generate a double 3D gyroid structure. For this, I'm using vedo
from matplotlib import pyplot as plt
from scipy.constants import speed_of_light
from vedo import *
import numpy as np
# Paramters
a = 5
length = 100
width = 100
height =…

agentsmith
- 1,226
- 1
- 14
- 27
1
vote
2 answers
Vedo: Is there a way to add a camera to scenes and see images from perspective?
I'm using Vedo in Python to visualize some 3D scans of indoor locations.
I would like to, e.g., add a 'camera' at (0,0,0), look left 90 degrees (or where ever), and see the camera's output.
Can this be done with Vedo? If not, is there a different…

JDS
- 16,388
- 47
- 161
- 224
0
votes
0 answers
Python crashing when checking intersection between meshes with vedo
I'm having a really weird behaviour when using vedo's intersectWith() function to check intersection between meshes. I'm checking intersections between thousands of simple planar meshes (basically squares, of the same size, made by 2 triangles,…

Ghost
- 1,426
- 5
- 19
- 38
0
votes
0 answers
Draw a radar in python with multiple scale
I try to generate a complexe radar with VEDO in python. I found a example code from stackoverflow and I want to modify it.
My goal is to generate a radar multiple scale on each axes. Here is the code I have:
import numpy as np
import pylab as…

macchina001
- 3
- 2
0
votes
1 answer
Vedo Plotter in Qt - Mouse Click Event not registering at the correct position
I have tried several different things about the mouse clicks not registering correctly in my Qt mainwindow. When using only my QHD monitor, the program worked just fine (video). However, when using my laptop (zoomed in at 1792 x 1120) as the only…

Daniel Jiang
- 23
- 5
0
votes
1 answer
why some textures did not load correctly in vedo library in python?
I'm trying to load some .obj files with their texture by vedo lib:
from vedo import *
from transparent import *
mesh = Mesh("3d/gol1/raw_model.obj")#load 3d model
mesh.texture("3d/gol1/texture.png")#load texture on 3d mode
plt =…

Ali Ganjbakhsh
- 541
- 7
- 13