Home
last modified time | relevance | path

Searched refs:BmpDecoder (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/imgcodecs/src/
Dgrfmt_bmp.hpp61 class BmpDecoder : public BaseImageDecoder class
65 BmpDecoder();
66 ~BmpDecoder();
Dgrfmt_bmp.cpp53 BmpDecoder::BmpDecoder() in BmpDecoder() function in cv::BmpDecoder
61 BmpDecoder::~BmpDecoder() in ~BmpDecoder()
66 void BmpDecoder::close() in close()
71 ImageDecoder BmpDecoder::newDecoder() const in newDecoder()
73 return makePtr<BmpDecoder>(); in newDecoder()
76 bool BmpDecoder::readHeader() in readHeader()
184 bool BmpDecoder::readData( Mat& img ) in readData()
Dloadsave.cpp71 decoders.push_back( makePtr<BmpDecoder>() ); in ImageCodecInitializer()