HomeSort by relevance Sort by last modified time
    Searched full:rgbtogray (Results 1 - 6 of 6) sorted by null

  /external/opencv/otherlibs/highgui/
grfmt_exr.h 74 void RGBToGray( float *in, float *out );
grfmt_exr.cpp 202 bool rgbtogray = false; local
301 rgbtogray = true;
331 if( rgbtogray )
340 RGBToGray( (float *)buffer, (float *)out );
530 void GrFmtExrReader::RGBToGray( float *in, float *out )
  /external/opencv3/modules/imgcodecs/src/
grfmt_exr.hpp 85 void RGBToGray( float *in, float *out );
grfmt_exr.cpp 194 bool rgbtogray = false; local
293 rgbtogray = true;
323 if( rgbtogray )
332 RGBToGray( (float *)buffer, (float *)out );
515 void ExrDecoder::RGBToGray( float *in, float *out )
  /external/webp/src/enc/
picture_csp.c 237 static int RGBToGray(int r, int g, int b) {
273 const int W = RGBToGray(r, g, b);
287 diff += abs(RGBToGray(r_avg, g_avg, b_avg) - W);
522 W = RGBToGray(best_uv[off + 0], best_uv[off + 1], best_uv[off + 2]);
    [all...]
  /external/libyuv/files/source/
row_common.cc 310 static __inline int RGBToGray(uint8 r, uint8 g, uint8 b) {
316 uint8 y = RGBToGray(src_argb[2], src_argb[1], src_argb[0]);
    [all...]

Completed in 311 milliseconds