-
Notifications
You must be signed in to change notification settings - Fork 373
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
OpenCV tracking example needs a frame limit #1930
Comments
Hi, is there a way to only store the last frame? Similar to what is achieved with OpenCV by calling I think this usage could be very common when visualizing a sequence of images where only the current image is important. However I understand this may not be a use case of the library since we would not be able to rerun the sequence. I have a similar question for 3D scenes too. Since one of rerun's objectives is #1630, the previous behavior would not only fit I feel that this question may fit this issue, but please let me know if that's not the case. P.S. This is an amazing library, thanks a lot for open-sourcing it! |
@javierttgg As you inferred correctly, one of the central ideas of Rerun is to store data as you go and don't throw away earlier results. But that said we have a mechanism to reduce the memory used and throw away previous images/logs/etc, see https://www.rerun.io/docs/howto/limit-ram
It's very related, but not entirely 😄. The issue is more that we (miss-)use our examples right now a lot for testing and then when running all examples at once and doing so is a bit too lengthy for some, so it would be nice to a have a parameter there to not run through the whole video stream.
Thank you <3 |
@Wumpf thanks a lot for the thorough response. It is great to know that you have those features in mind! |
It runs for like two minutes otherwise, making end-to-end tests extremely painful.
Similar to
opencv_canny
, this should have an optional frame limit.The text was updated successfully, but these errors were encountered: