Marco Musy
Marco Musy
Define "better results" :) The isosurface will produce a rough surface if the underlying scalar is noisy..
> You are right, there might be noise in the scalar. Is there a way to smooth the result further? When I turn up smoothing it does not seem to...
This is tricky because the default is phong shading - which kind of looks nice - but VTK (as you suspected) automatically reverts to flat shading if normals are not...
Hi @skhwhu I can only offer support for vedo and indeed you may find other tools that offers registration capabilities... I see basically 2 options. - doing it directly at...
I dont understand the question sorry.
Try: ```py from vedo import * normal = [0, 0, 1] cmap = "gist_stern_r" def func(w, _): c, n = pcutter.origin, pcutter.normal vslice = vol.slice_plane(c, n, autocrop=True).cmap(cmap) vslice.name = "Slice"...
Sorry @ldouteau I don't understand why this issue slipped off my attention! Just pushed a fix for it. ```py import vedo verts = [ (0, 0, 0), (1, 0, 0),...
Thanks Louis! I'm very open to it, please feel free to open a PR if you wish!
Hi, a JPG image is a 2D object. What you need instead is a 3D image (a `vedo.Volume()`). A 3D image can be seen as a set of 2D slices...
Sorry I missed this issue! Have you tried `.linewidth(0)` ?