This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

PROCESSOR-SDK-AM62A: DCC debugging tool to debug related problems

Part Number: PROCESSOR-SDK-AM62A
1.Auto Exposure
get_imx390_ae_dyn_params (IssAeDynamicParams * p_ae_dynPrms)
{
int32_t status = -1;
uint8_t count = 0;

g_return_val_if_fail (p_ae_dynPrms, status);

p_ae_dynPrms->targetBrightnessRange.min = 40;
p_ae_dynPrms->targetBrightnessRange.max = 50;
p_ae_dynPrms->targetBrightness = 45;
p_ae_dynPrms->threshold = 1;
p_ae_dynPrms->enableBlc = 1;
p_ae_dynPrms->exposureTimeStepSize = 1;

p_ae_dynPrms->exposureTimeRange[count].min = 100;
p_ae_dynPrms->exposureTimeRange[count].max = 33333;
p_ae_dynPrms->analogGainRange[count].min = 1024;
p_ae_dynPrms->analogGainRange[count].max = 8192;
p_ae_dynPrms->digitalGainRange[count].min = 256;
p_ae_dynPrms->digitalGainRange[count].max = 256;
count++;

p_ae_dynPrms->numAeDynParams = count;
status = 0;
return status;
}
Issue:
i、There is only one set of targetbrightness, is the targetbrightness the same in different time scenarios reasonable?
ii、If 60FPS is required, what should be the exposure time? How is the maximum and minimum exposure time determined?
2.Color depth supported by DCC
Issue:
i、DCC userguide Only the raw10 and raw12 images can be used for debugging?
ii、The current DCC tuning tool color depth can be selected 10/12/14/16bits per pixel, is 14/16bit raw image can also be used for debugging?
x 出现错误。请重试或与管理员联系。