You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thank you for the open-source library. This project is really something.
I used libcamera and picamera2 and was able to change properties such as the shutter speed (exposure) and analogue gain, which I really needed to solve my problem. I was able to work everything out with Python.
However, to incorporate everything with my application, I would need to have this camera support and control on JAVA. This can also be done through OpenCV, but I heard that there were a lot of problems (github1, github2, stack1, stack2, stack3 ) with that. I tried a lot of things, such as changing between OS versions (Bulleyes and Bookworm). There was even a Google summer code project that worked to fix this, but no solution was found.
In the end, for people who need to use opencv with libcamera, I followed this suggestion:
Until Libcamera is supported by OpenCV the only real solution is to use GStreamer which "comparatively" has quite a high CPU overhead. Example code to initialise VideoCapture;
The problem is that with this solution, I cannot access AnalogueGain and Exposure, which is what makes these cameras interesting since you have so much control.
I want to ask the libcamera community if there is already any feasible solution for this problem.
Best,
Gaspar
The text was updated successfully, but these errors were encountered:
Hello,
First of all, thank you for the open-source library. This project is really something.
I used libcamera and picamera2 and was able to change properties such as the shutter speed (exposure) and analogue gain, which I really needed to solve my problem. I was able to work everything out with Python.
However, to incorporate everything with my application, I would need to have this camera support and control on JAVA. This can also be done through OpenCV, but I heard that there were a lot of problems (github1, github2, stack1, stack2, stack3 ) with that. I tried a lot of things, such as changing between OS versions (Bulleyes and Bookworm). There was even a Google summer code project that worked to fix this, but no solution was found.
In the end, for people who need to use opencv with libcamera, I followed this suggestion:
In my case, I am using camera module 3, and it even works with tuning files:
The problem is that with this solution, I cannot access AnalogueGain and Exposure, which is what makes these cameras interesting since you have so much control.
I want to ask the libcamera community if there is already any feasible solution for this problem.
Best,
Gaspar
The text was updated successfully, but these errors were encountered: