Solved
Changing Hue, Saturation, and Brightness on SMT32H747I-Disco Board, Application Code from Model Zoo
- March 18, 2025
- 1 reply
- 2202 views
Hi
void Camera_StartNewFrameAcquisition(AppConfig_TypeDef *App_Config_Ptr)
{
App_Config_Ptr->new_frame_ready = 0;
Camera_Set_HueDegree(App_Config_Ptr->mirror_flip);
Camera_Set_Saturation(App_Config_Ptr->mirror_flip);
Camera_Set_Brightness(App_Config_Ptr->mirror_flip);
/***Resume the camera capture in NOMINAL mode****/
BSP_CAMERA_Resume(0);
}
Only the Brightness gets changed and not Hue or Saturation. I've made changes to the apps_camera.c only as shown above. I've also included a copy of the version I'm using. I would really really appreciate if anyone can guide me on how to change all three features at once. I am very desperate.
