-
Notifications
You must be signed in to change notification settings - Fork 53
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
Frame Rate on Raspberry Pi #84
Comments
Shouldn't be anything, the code was tested with a 60Hz Boson without any trouble. You could try querying the underlying OpenCV device to see what the frame rate is set to (or what it thinks it is). |
When I check the OpenCV cap with something like:
I get:
I get the same response on the Raspberry Pi and my laptop, but am able to grab frames at 60Hz on the laptop, and only at 30Hz on the Pi. So, seems like there is some underlying difference in OpenCV or the backend but it's not obvious what. I'll have to investigate further. |
Have you tried just setting the capture property to 60? You can check with
v4l2 on the Pi to see what formats are available?
```
v4l2-ctl --list-formats
```
…On Tue, 23 May 2023 at 19:19, Colin Keil ***@***.***> wrote:
When I check the OpenCV cap with something like:
from flirpy.camera.boson import Boson
import cv2
camera = Boson()
image = camera.grab()
print(camera.cap.getBackendName())
print(camera.cap.get(cv2.CAP_PROP_FPS))
I get:
V4L2
30.0
I get the same response on the Raspberry Pi and my laptop, but am able to
grab frames at 60Hz on the laptop, and only at 30Hz on the Pi. So, seems
like there is some underlying difference in OpenCV or the backend but it's
not obvious what. I'll have to investigate further.
—
Reply to this email directly, view it on GitHub
<#84 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAYDMJ3EHAYNAGEEVINYH2DXHTWRBANCNFSM6AAAAAAYG4K7QQ>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Is there anything in the flirpy code that would limit the frame rate to 30hz when using a raspberry pi with a FLIR Boson? I use the following script to assess frame rate, and it hovers right around 30 hz on a raspberry pi, but hits 60hz with the same camera on my laptop.
As far as I can tell, none of the pi's cores are maxed out, and 30hz seems like a suspiciously round number. I took a quick look at the Boson code and didn't see anything obvious.
The text was updated successfully, but these errors were encountered: