Home | History | Annotate | Download | only in highgui

Lines Matching defs:out

37 // or tort (including negligence or otherwise) arising in any way out of
325 uchar *out = data;
340 RGBToGray( (float *)buffer, (float *)out );
360 out[x] = CV_CAST_8U(t);
369 out[x] = CV_CAST_8U(t);
374 out += step;
530 void GrFmtExrReader::RGBToGray( float *in, float *out )
537 out[i] = in[n] * m_chroma.blue[0] + in[n + 1] * m_chroma.green[0] + in[n + 2] * m_chroma.red[0];
541 uchar *o = (uchar *)out;
555 ((int *)out)[i] = int(si[n] * m_chroma.blue[0] + si[n + 1] * m_chroma.green[0] + si[n + 2] * m_chroma.red[0]);
561 ((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));