pyapp-kit / ndv

Simple, fast-loading, n-dimensional array viewer with minimal dependencies.
BSD 3-Clause "New" or "Revised" License
35 stars 6 forks source link

Add histogram #49

Open tlambert03 opened 22 hours ago

tlambert03 commented 22 hours ago

opening an issue to discuss adding a histogram (which everyone agrees is a must-have feature)

@gselzer has done a lot of work here, currently in https://github.com/gselzer/ndv/tree/interactive-clims

I had a similar vispy-backed histogram that controlled the napari LUTs back in https://github.com/napari/napari/pull/675 ... at one point, I had put a lot of work/consideration into it, and that branch is still at https://github.com/tlambert03/napari/tree/histogram

backend considerations

we have a few options for tools we could use to create the actual histogram graph

wants

here's a partial list of things that one might want in a histogram. not all of these are mandatory for an initial implementation.

gselzer commented 4 hours ago

If you want to assign this to me @tlambert03 I'm happy to keep hacking along 😄

I had some further discussions with @marktsuchida and @nicost yesterday, which I'll summarize below:

Additional Wants:

Backend Considerations:

my current plans (up for debate/revision):

image

tlambert03 commented 4 hours ago

thanks @gselzer! I do want you to keep hacking along, but I do really want to organize my work in https://github.com/tlambert03/napari/tree/histogram for you to have a look at as well. As mentioned, this is something that I spent a good month on at one point and so I'd like to make sure that all the stuff learned back then is accounted for here as well. I started to do this in https://github.com/tlambert03/ndv/tree/histogram (see the x.py example), and will clean it up soon.

tlambert03 commented 4 hours ago

Toggle-able logarithmic y-axis to view distribution tails

I had this working in https://github.com/napari/napari/pull/675#issuecomment-554102325

Enable removal of a variable percentage of outliers in autoscale (ignore percentage in mmstudio) Display of additional statistics (mmstudio has average, standard deviation) Restrict calculation within ROIs Variable bin counts

these are all great, but should live in the statistics calculating thing (not the histogram PR). Let's just make a histogram component, and then think about how it lives within a more complex composite statistics display. The histogram widget basically just needs to take bins and show them.

So, if you want to open an independent PR to discuss a (non-GUI) stats engine, that would be great too. Basically, the GUI object should be disconnected from the calculation object.

tlambert03 commented 4 hours ago

another thing that that previous PR had was a shared mechanism for line scans: https://github.com/napari/napari/pull/675#issuecomment-553672258

so, it should be possible to share a lot of logic between a plot widget and a histogram widget (namely, keeping axes aligned with data and pan-zoom stuff)

gselzer commented 4 hours ago

thanks @gselzer! I do want you to keep hacking along, but I do really want to organize my work in https://github.com/tlambert03/napari/tree/histogram for you to have a look at as well.

Yes, definitely important, let me know when you feel like things are in a good spot for review and I'll be happy to read over things.

So, if you want to open an independent PR to discuss a (non-GUI) stats engine, that would be great too. Basically, the GUI object should be disconnected from the calculation object.

I agree on multiple PRs, I was partially using this comment as a way to pin down all of my thoughts in the open before the action items slipped from my memory 😅

gselzer commented 4 hours ago

another thing that that previous PR had was a shared mechanism for line scans: napari/napari#675 (comment)

so, it should be possible to share a lot of logic between a plot widget and a histogram widget (namely, keeping axes aligned with data and pan-zoom stuff)

Also worth noting these operations are rather interconnected with the existing ROI interoperability. We may want to track a separate issue for expanding ROI capabilities (adding additional ROIs like lines, ellipses, polygons, etc., as well as signals to keep track of their changes that the statistics engine could listen for).

tlambert03 commented 1 hour ago

ok @gselzer, have a look at https://github.com/tlambert03/ndv/tree/histogram

it's the bones of "plot" widget, where self._view is a viewbox ready for a histogram, line plot, etc... Still needs conveniences to hide/show the various axes, and we might consider a cross-platform API for accessing/styling/hiding/showing various components. Something like a "WidgetHandle" or a LabelHandle... I don't know, maybe that's overkill. Anyway, let me know if we've basically done the same thing so far :)