silx
silx copied to clipboard
silx toolkit
The `StatsWidget` can be improved to avoid useless computation: - Disable update when widget is not visible - Check plot items event type and only update stats when needed (i.e.,...
If we want to be fully compatible with nexus, we'll have to handle more `@interpretation` for color images: See https://github.com/nexusformat/definitions/pull/834: ``` * ``rgb-image`` (3-D data) * ``rgba-image`` (3-D data) *...
When plotting a 2d matrix that has the time on one axis it is only possible to show the 2d color plot with units and axis-labes. It would be convinient...
There is a bug in getting the physical target of a softlink that points to on external link ```python import h5py with h5py.File("source.h5", mode="w") as f: f["data"] = 10 with...
Hello, With a few simple spec files in hand, I discover that the behavior of silx.io.specfile.SpecFile() unpredictably depends on the file content. 1. Should the file begin with a leading...
Hello, Looking at [silx.io: Input-output](http://www.silx.org/doc/silx/latest/modules/io/index.html), I see a module `specfile` for reading SpecFiles and a top-level function `save1D()` that can write a two-column SpecFile. Nothing about writing a multi-column SpecFile....
As it is, the snapshot and video is using the `Plot3DWidget` to grab its content, so the size of the grabbed image is that of the widget. It would be...
Idea would be to allow to change the font in use for the axes labels, i.e., allow to do the following from the public API: ```python font = sceneWidget.getSceneGroup()._getScenePrimitive().font font.name...
This PR tries to reduce some inconvenience of GUI testing, by using an only one MDI window as container for all GUI tests. It reduce blinking, then allow to move...