silx
silx copied to clipboard
silx toolkit
Proposition from @vasole to constrain scatter profile drag to direction perpendicular to the profile line. Maybe others wants other constraints: such as move only horizontally or vertically.... Options: allow to...
There is a prototype in fabio: https://github.com/silx-kit/fabio/pull/341 What we learnt: There are no binary wheels of h5py which is hence built from scratch. This requires the lib HDF5 and its...
matplotlib support reversed LUT colors for any LUT color names. The name only have to be suffixed by `_r`. What about doing the same? And this could be exposed in...
rework `min_numerical_convertible_type` from utils.number which will probably fail in some cases. There should be no magical. Maybe there should not be float16...
I have a complex filter to be used in the Filtered Back Projection (the Hilbert filter), but with the "check_array" of sinofilter.py of the new Silx version, it only allows...
Close to regular grids would be better represented by quads than by triangles. Furthermore, the Delaunay triangulation would not be necessary.
Here is a feed back from flint. In the process of fixing numpy deprecation and then using `frombuffer` instead of `fromstring`, we saw that the combo `min_max` do not support...
I have a much used `ImageView` application which displays live feeds from detectors. My users are asking for the image value to be displayed in the status bar when hovering...
Any OpenCL test run on our Power9 machine results in the following error (with my environment): ```bash PYOPENCL_CTX="0:1" ./run_tests.py silx.opencl.test.test_addition.suite [...] OSError: [Errno 12] Cannot allocate memory ``` The reason...
Follow-up of #2696/#2698. Previously, pyopencl code used ```python d_array = pyopencl.array.zeros(queue, shape, dtype) ``` Because of the issues with `pocl`, this was replaced with ```python d_array = pyopencl.array.empty(queue, shape, dtype)...