Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 4788

Camera board • Re: imx462 banding

$
0
0
Small update. I pulled the 6.6 kernel myself and applied your PR but again got the vertical band artifact.

Now I made a small adjustment:

Code:

        //cci_write(imx290->regmap, IMX290_FR_FDG_SEL, 0x01, &ret);//cci_write(imx290->regmap, IMX290_FR_FDG_SEL, 0x11, &ret);u8 val = IMX290_FRSEL_60FPS;if (hcg_mode) {val |= IMX290_FDG_HCG;} else {val |= IMX290_FDG_LCG;}cci_write(imx290->regmap, IMX290_FR_FDG_SEL, val, &ret);
And now the vertical band is gone. I can also adjust conversion gain at runtime. Underneath a comparison, 100ms shutter, gain 50.
Doh, operator precedence.

Code:

cci_write(imx290->regmap, IMX290_FR_FDG_SEL,  IMX290_FRSEL_60FPS | hcg_mode ?IMX290_FDG_HCG : IMX290_FDG_LCG, &ret);
is effectively "(IMX290_FRSEL_60FPS | hcg_mode) ? IMX290_FDG_HCG : IMX290_FDG_LCG"
whereas we want "IMX290_FRSEL_60FPS | (hcg_mode ? IMX290_FDG_HCG : IMX290_FDG_LCG)".

Code:

cci_write(imx290->regmap, IMX290_FR_FDG_SEL,IMX290_FRSEL_60FPS | (hcg_mode ? IMX290_FDG_HCG : IMX290_FDG_LCG));
is what I really want.

Statistics: Posted by 6by9 — Tue Nov 12, 2024 8:08 am



Viewing all articles
Browse latest Browse all 4788

Trending Articles