Chris Xiao

Results 42 comments of Chris Xiao

> Hi. You have me a bit confused. From your example, `skel.show()` should show just the skeleton and `skel.show(mesh=True)` should show both mesh and skeleton. Is that not what you're...

> ``` import skeletor as sk import pyvista as py import trimesh.exchange.export import numpy as np pred = py.read('/Users/mikamixiao/Desktop/CIS 2/ET_data/registered/pred_329/pred_ETV2_178.vtk') faces_as_array = pred.faces.reshape((pred.n_faces, 4))[:, 1:] mesh = trimesh.Trimesh(pred.points, faces_as_array) fixed...

> Sorry, I think we're crossing wires here. > > Why don't you use `skel.show()` (instead of `skk.show`)? I just want to see the skeleton path without the mesh, is...

> `skel.show()` should just do that, i.e. show the skeleton without the mesh. Is it not doing that for you? I did what you said, it is still blank plot....

> Hmm. Works like a charm for me. Here's with `skel.show(mesh=True)`: > > That also works for me if I set ```mesh=True```. Is there a way only to show the...

> And it doesn't work if you do `skel.show(mesh=False)`? If that's the case, do me a favour and (re-)install `skeletor` from Github just to make sure you have the most...

> Try `git+https` instead of `git+git`: > > ```shell > pip3 install git+https://github.com/navis-org/skeletor@master > ``` I installed successfully, but it still did not show only the branches on plot. By...

> What version of trimesh and pyglet do you have? ``` pyglet==1.5.23 trimesh==3.10.7 ```

> @schlegelp I am sorry, it is still not gonna work. I also have no idea about this issue.

> At the end of the day this is trimesh issue. I would suggest you open an issue in their [repo](https://github.com/mikedh/trimesh). You could share this minimal example of plotting a...