Lines Matching refs:_img
199 jas_image_t *_img = jas_image_chclrspc( image, clrprof, JAS_CMXFORM_INTENT_RELCLR ); in readData() local
200 if( _img ) in readData()
203 m_image = image = _img; in readData()
438 bool Jpeg2KEncoder::write( const Mat& _img, const std::vector<int>& ) in write() argument
440 int width = _img.cols, height = _img.rows; in write()
441 int depth = _img.depth(), channels = _img.channels(); in write()
474 result = writeComponent8u( img, _img ); in write()
476 result = writeComponent16u( img, _img ); in write()
494 bool Jpeg2KEncoder::writeComponent8u( void *__img, const Mat& _img ) in writeComponent8u() argument
497 int w = _img.cols, h = _img.rows, ncmpts = _img.channels(); in writeComponent8u()
504 const uchar* data = _img.ptr(y); in writeComponent8u()
518 bool Jpeg2KEncoder::writeComponent16u( void *__img, const Mat& _img ) in writeComponent16u() argument
521 int w = _img.cols, h = _img.rows, ncmpts = _img.channels(); in writeComponent16u()
528 const uchar* data = _img.ptr(y); in writeComponent16u()