I use rawpy module in python to post-process raw images, however, no matter how I set the Params, the output is different from the default RGB in camera ISP, so anyone know how to operate on this please?
I have tried the following ways:
Default:
output = raw.postprocess()
Use Camera White balance:
output = raw.postprocess(use_camera_wb=True)
No auto bright:
output = raw.postprocess(use_camera_wb=True, no_auto_bright=True)
None of these could recover the RGB image as the camera ISP output.