mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 13:34:08 -08:00
f9244cdd30
git-svn-id: https://zxing.googlecode.com/svn/trunk@2089 59b500cc-1b3d-0410-9834-0bbf25fbcc57
41 lines
990 B
C++
41 lines
990 B
C++
#ifndef CAMERAIMAGE_H
|
|
#define CAMERAIMAGE_H
|
|
|
|
#include <QImage>
|
|
#include <QString>
|
|
#include <zxing/LuminanceSource.h>
|
|
|
|
using namespace zxing;
|
|
|
|
class CameraImageWrapper : public LuminanceSource
|
|
{
|
|
public:
|
|
CameraImageWrapper();
|
|
CameraImageWrapper(QImage& image);
|
|
CameraImageWrapper(CameraImageWrapper& otherInstance);
|
|
~CameraImageWrapper();
|
|
|
|
int getWidth() const;
|
|
int getHeight() const;
|
|
|
|
unsigned char getPixel(int x, int y) const;
|
|
unsigned char* copyMatrix() const;
|
|
|
|
void setImage(QString fileName);
|
|
void setImage(QImage newImage);
|
|
QImage grayScaleImage(QImage::Format f);
|
|
QImage getOriginalImage();
|
|
|
|
|
|
// Callers take ownership of the returned memory and must call delete [] on it themselves.
|
|
unsigned char* getRow(int y, unsigned char* row);
|
|
unsigned char* getMatrix();
|
|
|
|
private:
|
|
QImage image;
|
|
unsigned char* pRow;
|
|
unsigned char* pMatrix;
|
|
};
|
|
|
|
#endif //CAMERAIMAGE_H
|