-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
How to Detect Frame Drops #9533
Comments
Hi @tarekmuallim Information on how the RealSense SDK calculates frame drops is provided in the link below. |
@MartyG-RealSense thank you for the information. That source code help me. I am wondering, is there any way to get information about if incomplete frame is received? |
There is an SDK instruction called RS2_NOTIFICATION_CATEGORY_FRAME_CORRUPTED. Example scripting for accessing this instruction to detect incomplete frames is suggested here: |
Hi @MartyG-RealSense thanks for the information. |
I'm pleased that the information was useful to you - thanks for the update! |
When trying to get a new frame, how to detect if frames drops happen?
Applying something like:
rs2::frameset frames = pipeline.wait_for_frames();
I need to detect if frames drops happen during this.
The text was updated successfully, but these errors were encountered: