Home
last modified time | relevance | path

Searched refs:col_5x5 (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser_v2/
H A Daec_xml2json.cpp37 uint8_t line_5x5, col_5x5; in AecGridWeight5x5to15x15() local
43 col_5x5 = i % 5; in AecGridWeight5x5to15x15()
46 col_15x15 = col_5x5 * 3; in AecGridWeight5x5to15x15()
52 switch (col_5x5) { in AecGridWeight5x5to15x15()
57 for (j = 0; j < 3 + col_5x5; j++) in AecGridWeight5x5to15x15()
58 … + col_15x15 + j] = inWeights[i] + (float)(inWeights[i + 1] - inWeights[i]) / (3.0f + col_5x5) * j; in AecGridWeight5x5to15x15()
69 …2] = inWeights[line_5x5 * 5 + col_5x5] + (float)(inWeights[(line_5x5 + 1) * 5 + col_5x5] - inWeigh… in AecGridWeight5x5to15x15()
70 for (j = 0; j < 7 - col_5x5; j++) in AecGridWeight5x5to15x15()
71 …+ col_15x15 + 2 - j] = inWeights[i] + (float)(inWeights[i - 1] - inWeights[i]) / (7 - col_5x5) * j; in AecGridWeight5x5to15x15()
80 switch (col_5x5) { in AecGridWeight5x5to15x15()
[all …]
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/uAPI2/
H A Drk_aiq_user_api2_custom_ae.cpp382 uint8_t line_5x5, col_5x5; in AeGridWeight15x15to5x5() local
393 col_5x5 = col_15x15 / 3; in AeGridWeight15x15to5x5()
395 SumWeight[line_5x5 * 5 + col_5x5] += inWeights[line_15x15 * 15 + col_15x15]; in AeGridWeight15x15to5x5()