Damian Mendroch

Results 14 comments of Damian Mendroch

@nick-s-b @Richard-L Seems to be a scaling issue. Setting it to Bilinear in Settings -> Scaling seems to solve it for .arw and .dng files. Raw files for reproducibility: https://img.photographyblog.com/reviews/sony_a7_iii/photos/sony_a7_iii_01.arw...

I asked myself the same, but did not find an inbuilt solution for this. But what you can do, is add a text overlay to your scene that gets updated...

If I remember correctly, different scales between monitors aren't supported by X11, so this only affects Wayland. Until this is fixed qimgv can also be run with enforced usage of...

What about ``` s1.scene.renderer.reset_camera_clipping_range() ``` ?

In your case you need to use `mlab.view(70, 60, 100)` (as it is a method of `mlab`) instead of just `view(70, 60, 100)`. Additionally, the command must be put inside...

+1 for restricting the highest supported version. While 9.4 works with mayavi 4.8.3 by now, the newest vtk 9.5 leads to issues. I'm trying to exclude this version with https://github.com/enthought/mayavi/pull/1351.

It has always been that slow. When looking at the commit history, there are gaps of multiple months. PyPI releases are typically more than a year apart. Until then, you...

Also doesn't build on Linux 6.15. I tested both python 3.13 and 3.12, the official mayavi 4.8.3 release and the most current git zipball.

Seems to work with the old versions of vtk: ``` pip install "vtk < 9.5" ``` And with the command from https://github.com/enthought/mayavi/issues/1325#issuecomment-2537662062 ``` pip install mayavi --no-cache-dir --verbose --no-build-isolation ```

Seems to be an issue with vtk 9.5. Running these commands solved it: https://github.com/enthought/mayavi/issues/1350#issuecomment-3027457501