Lorenzo Gaifas
Lorenzo Gaifas
I already have a little trick like that in fact (sorting layers before adding them), the problem is, it doesn'y work xD napari gives the files to readers one by...
The flip is in Y, and that's because napari has the origin at the top left like most graphics programs, instead of swapping it to the bottom left like IMOD...
FYI if it's just for visualisation and you need it to work now, you can just do: ```py layer.data = layer.data[:, ::-1] ``` to flip it.
Importantly, we shouldn't clutter and weigh down the repo with heavy data. We should either host them on a separate repo that doesn't need frequent updates, or even better we...
This doesn't need anything custom, you can do it already with pure napari, as explained in that link. For example, you can do: ```py points_layer.face_color = 'LCCmax' # assuming `LCCmax`...
I'm not sure this is in the scope for blik, but if you'd like to take a crack at a PR we can see if it's small/self-contained enough that it's...
Hey! Excited to see this picked up again :) I did a quick-and-dirty test with old code from https://github.com/napari/napari/pull/4474. Maybe I converted things wrong, but I don't think it's working...
Great! How does one enable this for `EventedModel`?
> It is strange at first to see the tool icons for image layers, but it opens the possibility of other tools there (Crop? Histogram?)
Hi @OnionKiller, thanks for giving it a go! There are a few ways to go about it. The "best" way (=harder lift and requires more discussion) would be refactor the...