-
Notifications
You must be signed in to change notification settings - Fork 412
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
Configurable ranges / (spatial) extent in image and tensor view #1510
Comments
Hey @tfachmann! Thanks for opening this issue and really fantastic to hear you see a large potential in Rerun! It's almost funny that this issue came in during this weekend because on Friday, we aligned internally around that during the next 6 weeks, Rerun should become a completely valid and significantly better alternative to |
Cool, nice to hear it aligns with what you're trying tackle anyway! Looking forward for upcoming releases and can't wait to show it in our institute 🚀 |
So what you are asking for is basically a cropping of the tensor, correct? Do you want/need this to be precise, or do you really just want to zoom in to the tensor? |
In my case, not really (it may be that it is not 100% |
Ah I see - you want to map the tensor indices to some other coordinate system. This could perhaps be handled by the Thanks for the clarification! |
<!-- Open the PR up as a draft until you feel it is ready for a proper review. Do not make PR:s from your own `main` branch, as that makes it difficult for reviewers to add their own fixes. Add any improvements to the branch as new commits to make it easier for reviewers to follow the progress. All commits will be squashed to a single commit once the PR is merged into `main`. Make sure you mention any issues that this PR closes in the description, as well as any other related issues. To get an auto-generated PR description you can put "copilot:summary" or "copilot:walkthrough" anywhere. --> ### What This PR adds a new colormap: cyan to yellow. The colormap is designed to work well for red-green colorblind people and make it easy to see the sign and magnitude of values in the range -1 to 1. It is dark and dull in the middle and bright and colorful at the ends.  This screenshot is from https://www.shadertoy.com/view/lfByRh.  This screenshot is from the signed distance field example. The normalization of values interferes with the colormap as it shifts the center of the colormap away from zero. It will become easier to use it to its full potential when range controls for colormaps are added. This problem is related to #6106 and #1510. ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [ ] I have tested the web demo (if applicable): * Using examples from latest `main` build: [rerun.io/viewer](https://rerun.io/viewer/pr/7001?manifest_url=https://app.rerun.io/version/main/examples_manifest.json) * Using full set of examples from `nightly` build: [rerun.io/viewer](https://rerun.io/viewer/pr/7001?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json) * [ ] The PR title and labels are set such as to maximize their usefulness for the next release's CHANGELOG * [ ] If applicable, add a new check to the [release checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)! * [ ] If have noted any breaking changes to the log API in `CHANGELOG.md` and the migration guide - [PR Build Summary](https://build.rerun.io/pr/{{pr.number}}) - [Recent benchmark results](https://build.rerun.io/graphs/crates.html) - [Wasm size tracking](https://build.rerun.io/graphs/sizes.html) To run all checks from `main`, comment on the PR with `@rerun-bot full-check`.
I was fiddling around with rerun and see large potential to use it for data analysis in our field where I would like to replace matplotlib by rerun. Selecting dimensions to slice through is pretty awesome!
To actually use it (i.e. extracting coordinates intuitively, slicing through the actual dimension) I would like to have an option to add an extent (or axis limits) similar to matplotlib: https://matplotlib.org/stable/tutorials/intermediate/imshow_extent.html
The option to add axes and a grid would help as well.
Note: the data I'm visualizing here is 3D (X, Y, Z in meter) with some quality.
It is related to #683
The text was updated successfully, but these errors were encountered: