Home
last modified time | relevance | path

Searched refs:RGBToGray (Results 1 – 4 of 4) sorted by relevance

/external/opencv/otherlibs/highgui/
Dgrfmt_exr.h74 void RGBToGray( float *in, float *out );
Dgrfmt_exr.cpp340 RGBToGray( (float *)buffer, (float *)out ); in ReadData()
530 void GrFmtExrReader::RGBToGray( float *in, float *out ) in RGBToGray() function in GrFmtExrReader
/external/webp/src/enc/
Dpicture_csp.c273 static int RGBToGray(int r, int g, int b) { in RGBToGray() function
550 W = RGBToGray(best_uv[off + 0], best_uv[off + 1], best_uv[off + 2]); in PreprocessARGB()
/external/libyuv/files/source/
Drow_common.cc310 static __inline int RGBToGray(uint8 r, uint8 g, uint8 b) { in RGBToGray() function
316 uint8 y = RGBToGray(src_argb[2], src_argb[1], src_argb[0]); in ARGBGrayRow_C()