"atomic bomb" commit. Reorganized OpenCV directory structure
This commit is contained in:
56
modules/highgui/src/grfmt_imageio.hpp
Normal file
56
modules/highgui/src/grfmt_imageio.hpp
Normal file
@@ -0,0 +1,56 @@
|
||||
/*
|
||||
* grfmt_imageio.h
|
||||
*
|
||||
*
|
||||
* Created by Morgan Conbere on 5/17/07.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _GRFMT_IMAGEIO_H_
|
||||
#define _GRFMT_IMAGEIO_H_
|
||||
|
||||
#ifdef HAVE_IMAGEIO
|
||||
|
||||
#include "grfmt_base.hpp"
|
||||
#include <ApplicationServices/ApplicationServices.h>
|
||||
|
||||
namespace cv
|
||||
{
|
||||
|
||||
class ImageIODecoder : public BaseImageDecoder
|
||||
{
|
||||
public:
|
||||
|
||||
ImageIODecoder();
|
||||
~ImageIODecoder();
|
||||
|
||||
bool readData( Mat& img );
|
||||
bool readHeader();
|
||||
void close();
|
||||
|
||||
size_t signatureLength() const;
|
||||
bool checkSignature( const string& signature ) const;
|
||||
|
||||
ImageDecoder newDecoder() const;
|
||||
|
||||
protected:
|
||||
|
||||
CGImageRef imageRef;
|
||||
};
|
||||
|
||||
class ImageIOEncoder : public BaseImageEncoder
|
||||
{
|
||||
public:
|
||||
ImageIOEncoder();
|
||||
~ImageIOEncoder();
|
||||
|
||||
bool write( const Mat& img, const vector<int>& params );
|
||||
|
||||
ImageEncoder newEncoder() const;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif/*HAVE_IMAGEIO*/
|
||||
|
||||
#endif/*_GRFMT_IMAGEIO_H_*/
|
Reference in New Issue
Block a user