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.
Inside AcqThread, while initializing camera there is such a code:
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.