removed benchmark code from raw false colour suppression

This commit is contained in:
heckflosse
2016-03-13 23:23:32 +01:00
parent c200c266c0
commit 6434460efb
3 changed files with 2 additions and 5 deletions

View File

@@ -51,7 +51,7 @@ inline void RawImageSource::convert_row_to_RGB (float* r, float* g, float* b, co
}
}
inline void RawImageSource::convert_to_RGB (float &r, float &g, float &b, const float &Y, const float &I, const float &Q)
inline void RawImageSource::convert_to_RGB (float &r, float &g, float &b, const float Y, const float I, const float Q)
{
r = Y + 0.956f * I + 0.621f * Q;
g = Y - 0.272f * I - 0.647f * Q;