I'm trying to implement a digital zoom feature on the camera module 3 and would need to change the camera options to reduce the resolution sent from the camera.
It works fine to change the settings once in the beginning of the program and I can select a resolution then. However when I want to change it during the programs operation with an already setup and running camera I cannot get it to work.
I'm building on the LibcameraRaw example.
Here is the current code to change the settings that results in an "terminate called without an active exception" error message and program crash
Any tips on how to change the resolution of the camera?
It works fine to change the settings once in the beginning of the program and I can select a resolution then. However when I want to change it during the programs operation with an already setup and running camera I cannot get it to work.
I'm building on the LibcameraRaw example.
Here is the current code to change the settings that results in an "terminate called without an active exception" error message and program crash
Any tips on how to change the resolution of the camera?
Code:
//app is the LibcameraRaw function argumentVideoOptions * options = app.GetOptions();app.StopCamera();app.StopEncoder();app.CloseCamera();options->width = 1536;options->height = 864;options->framerate = 50;app.OpenCamera();app.ConfigureVideo();app.StartEncoder();app.StartCamera();
Statistics: Posted by cerberusEE — Tue Mar 12, 2024 9:41 am