letmaik / rawpy

📷 RAW image processing for Python, a wrapper for libraw
https://pypi.python.org/pypi/rawpy
MIT License
613 stars 68 forks source link

About the details of postprocess function #113

Closed XGBoost closed 3 years ago

XGBoost commented 4 years ago

I'm curious about the details of postprocess. I have seen many isp pipeline and found that different cameras or different sensors have different pipelines. So I wonder what happened when we use rawdata.postprocess() function. Thank you very much!

kmilos commented 4 years ago

rawpy is just a wrapper for the LibRaw library, so your question really belongs there. LibRaw is in turn based on dcraw, and you can find all about its internals here: https://ninedegreesbelow.com/photography/dcraw-c-code-annotated.html

XGBoost commented 4 years ago

thank you