We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The _clipf() function clamps any values above 1.0:
_clipf()
// Apply exposure and white balance factors const float Rraw = _clipf((b[0] * p_R * k) / min_b); const float Graw = _clipf((b[1] * p_G * k) / min_b); const float Braw = _clipf((b[2] * p_B * k) / min_b);
If I remember correctly an inappropriate clamp was removed from other templates in the P-2013-001 app.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
_clipf()
function clamps any values above 1.0:If I remember correctly an inappropriate clamp was removed from other templates in the P-2013-001 app.
The text was updated successfully, but these errors were encountered: