Home
last modified time | relevance | path

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

/external/opencv3/modules/imgcodecs/src/
Dgrfmt_exr.hpp85 void RGBToGray( float *in, float *out );
Dgrfmt_exr.cpp332 RGBToGray( (float *)buffer, (float *)out ); in readData()
515 void ExrDecoder::RGBToGray( float *in, float *out ) in RGBToGray() function in cv::ExrDecoder
/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.c237 static int RGBToGray(int r, int g, int b) { in RGBToGray() function
273 const int W = RGBToGray(r, g, b); in UpdateChroma()
287 diff += abs(RGBToGray(r_avg, g_avg, b_avg) - W); in UpdateChroma()
522 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()