-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Viz: client-side JS for colormapping #74
Comments
How about a mouse/trackpad interface of up-down for z-indexing, and left-right for various smoothly transitioning colormaps. Basically play with that little viewer that jus does up-down for EM data. Meh. More valuable is probably just having a slider alongside neuroglancer that does "left-right for various smoothly transitioning colormaps." Leave this out of the UI for 3D navigation. |
Transmitting grayscale images is more efficient (single channel vs triple channel is 1:3) In this way clientside colormapping is a form of data compression. It also makes for a more dynamic UX. Of course is requires client-side javascript. Or maybe CSS/SVG can do it:
|
The switching should be like a header image carousel. A horizontal row of dot/circles that has current image corresponding dot/circle highlighted. Happens on a timer. Transition: some sequential colormap interpolation. |
A Jupyter widget which reads grayscale intensity image data and performs colormapping client-side (maybe as webgl shaders). This is also a way to get a similar effect as described in #59. Pro: more user control of dynamic color mapping, con does not generate a static file (PNG, or animated GIF).
The text was updated successfully, but these errors were encountered: