Home | History | Annotate | Download | only in src

Lines Matching defs:out

38 // or tort (including negligence or otherwise) arising in any way out of
317 uchar *out = data;
332 RGBToGray( (float *)buffer, (float *)out );
351 out[x] = cv::saturate_cast<uchar>(fi[x]*5);
359 out[x] = cv::saturate_cast<uchar>(ui[x]);
364 out += step;
515 void ExrDecoder::RGBToGray( float *in, float *out )
522 out[i] = in[n] * m_chroma.blue[0] + in[n + 1] * m_chroma.green[0] + in[n + 2] * m_chroma.red[0];
526 uchar *o = (uchar *)out;
540 ((int *)out)[i] = int(si[n] * m_chroma.blue[0] + si[n + 1] * m_chroma.green[0] + si[n + 2] * m_chroma.red[0]);
546 ((uchar *)out)[i] = uchar((ui[n] * m_chroma.blue[0] + ui[n + 1] * m_chroma.green[0] + ui[n + 2] * m_chroma.red[0]) * (256.0 / 4294967296.0));