qzxing/source/CameraImageWrapper.cpp

181 lines
4.2 KiB
C++
Raw Normal View History

#include "CameraImageWrapper.h"
#include <QColor>
#include <QApplication>
#include <QDesktopWidget>
2013-07-09 12:46:37 +00:00
CameraImageWrapper::CameraImageWrapper() : LuminanceSource(0,0), isSmoothTransformationEnabled(false)
{
}
2013-07-09 12:46:37 +00:00
CameraImageWrapper::CameraImageWrapper(QImage& image) : LuminanceSource(image.width(), image.height()) , isSmoothTransformationEnabled(false)
{
setImage(image);
}
2013-07-09 12:46:37 +00:00
CameraImageWrapper::CameraImageWrapper(CameraImageWrapper& otherInstance) : LuminanceSource(otherInstance.getWidth(), otherInstance.getHeight()) , isSmoothTransformationEnabled(false)
{
image = otherInstance.getOriginalImage().copy();
}
CameraImageWrapper::~CameraImageWrapper()
{
}
int CameraImageWrapper::getWidth() const
{
return image.width();
}
int CameraImageWrapper::getHeight() const
{
return image.height();
}
unsigned char CameraImageWrapper::getPixel(int x, int y) const
{
QRgb pixel = image.pixel(x,y);
return qGray(pixel);//((qRed(pixel) + qGreen(pixel) + qBlue(pixel)) / 3);
}
unsigned char* CameraImageWrapper::copyMatrix() const
{
unsigned char* newMatrix = (unsigned char*)malloc(image.width()*image.height()*sizeof(unsigned char));
int cnt = 0;
for(int i=0; i<image.width(); i++)
{
for(int j=0; j<image.height(); j++)
{
newMatrix[cnt++] = getPixel(i,j);
}
}
return newMatrix;
}
bool CameraImageWrapper::setImage(QString fileName)
{
bool isLoaded = image.load(fileName);
if(!isLoaded)
return false;
if(image.width() > QApplication::desktop()->width())
image = image.scaled(QApplication::desktop()->width(), image.height(), Qt::IgnoreAspectRatio);
if(image.height() > QApplication::desktop()->height())
image = image.scaled(image.width(), QApplication::desktop()->height(), Qt::IgnoreAspectRatio);
return true;
}
bool CameraImageWrapper::setImage(QImage newImage)
{
if(newImage.isNull())
return false;
image = newImage.copy();
if(image.width() > 640)
image = image.scaled(640, image.height(), Qt::KeepAspectRatio, isSmoothTransformationEnabled ? Qt::SmoothTransformation : Qt::FastTransformation);
return true;
}
QImage CameraImageWrapper::grayScaleImage(QImage::Format f)
{
QImage tmp(image.width(), image.height(), f);
for(int i=0; i<image.width(); i++)
{
for(int j=0; j<image.height(); j++)
{
int pix = (int)getPixel(i,j);
tmp.setPixel(i,j, qRgb(pix ,pix,pix));
}
}
return tmp;
//return image.convertToFormat(f);
}
QImage CameraImageWrapper::getOriginalImage()
{
return image;
}
2013-07-27 17:01:25 +00:00
//unsigned char* CameraImageWrapper::getRow(int y, unsigned char* row)
//{
// int width = getWidth();
// if (row == NULL)
// {
// row = new unsigned char[width];
// pRow = row;
// }
// for (int x = 0; x < width; x++)
// row[x] = getPixel(x,y);
// return row;
//}
//unsigned char* CameraImageWrapper::getMatrix()
//{
// int width = getWidth();
// int height = getHeight();
// unsigned char* matrix = new unsigned char[width*height];
// unsigned char* m = matrix;
// for(int y=0; y<height; y++)
// {
// unsigned char* tmpRow;
// memcpy(m, tmpRow = getRow(y, NULL), width);
// m += width * sizeof(unsigned char);
// delete tmpRow;
// }
// pMatrix = matrix;
// return matrix;
//}
ArrayRef<char> CameraImageWrapper::getRow(int y, ArrayRef<char> row) const
{
int width = getWidth();
2013-07-27 17:01:25 +00:00
if (row->size() != width)
row.reset(ArrayRef<char>(width));
for (int x = 0; x < width; x++)
row[x] = getPixel(x,y);
return row;
}
2013-07-27 17:01:25 +00:00
ArrayRef<char> CameraImageWrapper::getMatrix() const
{
int width = getWidth();
int height = getHeight();
2013-07-27 17:01:25 +00:00
char* matrix = new char[width*height];
char* m = matrix;
for(int y=0; y<height; y++)
{
2013-07-27 17:01:25 +00:00
ArrayRef<char> tmpRow;
tmpRow = getRow(y, ArrayRef<char>(width));
memcpy(m, tmpRow->values().data(), width);
m += width * sizeof(unsigned char);
2013-07-27 17:01:25 +00:00
//delete tmpRow;
}
2013-07-27 17:01:25 +00:00
//pMatrix = matrix;
return ArrayRef<char>(matrix, width*height);
}
void CameraImageWrapper::setSmoothTransformation(bool enable)
{
isSmoothTransformationEnabled = enable;
}