Nicholas Sharp
Nicholas Sharp
Very glad to hear this is useful to you! Are you working in C++ or Python? In C++ you can just assign to `double polyscope::view::fov` ([here](https://github.com/nmwsharp/polyscope/blob/master/include/polyscope/view.h#L48)). In Python it doesn't...
Glad you brought this up, I definitely agree! Actually 90% of this machinery already in place due to the `PersistentValue`s that are used for all parameters and globally cached via...
Yes, for sure! You can see an example of this here, predicting values on faces. https://github.com/nmwsharp/diffusion-net/blob/master/experiments/human_segmentation_original/human_segmentation_original.py#L69-L75. You can pass `outputs_at='faces'` to construct a network which outputs a value per-face. You...
Thank you for submitting this PR, it looks great! I'm going to leave a few comments inline. If any requests are too much work, just let me know and I...
Another wish-list request, could we add a simple test like this for corner data? https://github.com/nmwsharp/polyscope/blob/master/test/src/basics_test.cpp#L368
Thank you for all the changes/additions! It looks like there's one failure happening in the tests? I think it's because the volume mesh picking code also uses the same surface...
Hi! Can you be any more specific about the issue you're having? This repo follows a fairly typical python / pytorch workflow. You should be able to run the scripts...
Ah, I see. I have never used colab before, though I believe in theory it should work. I think the error you're seeing is because that program tries to open...
Hm okay, I'm not sure then. I'm confused, because that shouldn't be touching the GUI code at all. Perhaps there is some silly bug. I'll have to try to get...
@lui-shex So it turns out, for some crazy reason by default `conda` includes build-hashes which are specific to your platform in the generated `environment.yml`. This means that when you try...