-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
Description
Inside AcqThread, while initializing camera there is such a code:
// SET FPS.
if(!mDevice->setCameraFPS())
return false;
// INIT CAMERA.
if(!mDevice->initializeCamera())
return false;
The problem is that for AravisGigeCamera, initializeCamera() enforces 30 fps thus using setCameraFPS() is ineffective.
A temporary solution is replace those two code blocks with each other. I could place a pull request however I have no idea now how such a change will influence all other input sources. Thus writing a ticket only.
Reactions are currently unavailable