-
-
Save MichaelHeiser/5ab6ca42444a4c231ce0910ad0a4cf8a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "QZXingFilterVideoSink.h" | |
#include <QDebug> | |
#include <QtConcurrent/QtConcurrent> | |
#include "QZXingImageProvider.h" | |
QZXingFilter::QZXingFilter(QObject *parent) | |
: QObject(parent) | |
, decoder(QZXing::DecoderFormat_QR_CODE) | |
, decoding(false) | |
{ | |
/// Connecting signals to handlers that will send signals to QML | |
connect(&decoder, &QZXing::decodingStarted, | |
this, &QZXingFilter::handleDecodingStarted); | |
connect(&decoder, &QZXing::decodingFinished, | |
this, &QZXingFilter::handleDecodingFinished); | |
} | |
QZXingFilter::~QZXingFilter() | |
{ | |
if(!processThread.isFinished()) { | |
processThread.cancel(); | |
processThread.waitForFinished(); | |
} | |
} | |
void QZXingFilter::handleDecodingStarted() | |
{ | |
decoding = true; | |
emit decodingStarted(); | |
emit isDecodingChanged(); | |
} | |
void QZXingFilter::handleDecodingFinished(bool succeeded) | |
{ | |
decoding = false; | |
emit decodingFinished(succeeded, decoder.getProcessTimeOfLastDecoding()); | |
emit isDecodingChanged(); | |
} | |
void QZXingFilter::setOrientation(int orientation) | |
{ | |
if (orientation_ == orientation) { | |
return; | |
} | |
orientation_ = orientation; | |
emit orientationChanged(orientation_); | |
} | |
int QZXingFilter::orientation() const | |
{ | |
return orientation_; | |
} | |
void QZXingFilter::setVideoSink(QObject *videoSink){ | |
m_videoSink = qobject_cast<QVideoSink*>(videoSink); | |
connect(m_videoSink, &QVideoSink::videoFrameChanged, this, &QZXingFilter::processFrame, Qt::DirectConnection); | |
} | |
QElapsedTimer m_elapsedTimer; | |
void QZXingFilter::processFrame(const QVideoFrame &frame) { | |
if(!isDecoding() && (!m_elapsedTimer.isValid() || m_elapsedTimer.elapsed() >= 200)) { | |
m_elapsedTimer.restart(); | |
decoding = true; | |
bool didWeMapTheFrame = false; | |
if(!static_cast<QVideoFrame>(frame).isMapped()){ | |
#ifdef Q_OS_ANDROID | |
m_videoSink->setRhi(nullptr); // https://bugreports.qt.io/browse/QTBUG-97789 | |
#endif | |
didWeMapTheFrame = static_cast<QVideoFrame>(frame).map(QVideoFrame::ReadOnly); | |
} | |
if(static_cast<QVideoFrame>(frame).isMapped() && processThread.isFinished()) { | |
processThread = QtConcurrent::run([=]() { | |
auto image = static_cast<QVideoFrame>(frame).toImage(); | |
if(image.isNull()) | |
{ | |
qDebug() << "QZXingFilter error: Cant create image file to process."; | |
decoding = false; | |
return; | |
} | |
QImage frameToProcess(image); | |
const QRect& rect = captureRect.toRect(); | |
if (captureRect.isValid() && frameToProcess.size() != rect.size()) { | |
frameToProcess = image.copy(rect); | |
} | |
if (!orientation_) { | |
decoder.decodeImage(frameToProcess); | |
} else { | |
QTransform transformation; | |
transformation.translate(frameToProcess.rect().center().x(), frameToProcess.rect().center().y()); | |
transformation.rotate(-orientation_); | |
QImage translatedImage = frameToProcess.transformed(transformation); | |
decoder.decodeImage(translatedImage); | |
} | |
decoder.decodeImage(frameToProcess, frameToProcess.width(), frameToProcess.height()); | |
decoding = false; | |
}); | |
if(didWeMapTheFrame) static_cast<QVideoFrame>(frame).unmap(); | |
} | |
else { | |
decoding = false; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment