2013-08-13 11:10:45 +02:00
|
|
|
// QT includes
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QDateTime>
|
|
|
|
|
|
|
|
// Hyperion includes
|
|
|
|
#include <hyperion/DispmanxWrapper.h>
|
2013-08-14 10:54:49 +02:00
|
|
|
#include <hyperion/Hyperion.h>
|
2013-08-13 11:10:45 +02:00
|
|
|
#include <hyperion/ImageProcessorFactory.h>
|
2013-08-13 12:03:00 +02:00
|
|
|
#include <hyperion/ImageProcessor.h>
|
2013-08-13 11:10:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Local-Hyperion includes
|
|
|
|
#include "DispmanxFrameGrabber.h"
|
|
|
|
|
2013-08-14 10:54:49 +02:00
|
|
|
DispmanxWrapper::DispmanxWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, Hyperion * hyperion) :
|
|
|
|
_updateInterval_ms(1000/updateRate_Hz),
|
|
|
|
_timeout_ms(2 * _updateInterval_ms),
|
2013-08-13 11:10:45 +02:00
|
|
|
_timer(),
|
2013-08-14 10:54:49 +02:00
|
|
|
_frameGrabber(new DispmanxFrameGrabber(grabWidth, grabHeight)),
|
|
|
|
_processor(ImageProcessorFactory::getInstance().newImageProcessor()),
|
|
|
|
_ledColors(hyperion->getLedCount(), RgbColor::BLACK),
|
|
|
|
_hyperion(hyperion)
|
2013-08-13 11:10:45 +02:00
|
|
|
{
|
2013-08-14 10:54:49 +02:00
|
|
|
// Configure the timer to generate events every n milliseconds
|
|
|
|
_timer.setInterval(_updateInterval_ms);
|
2013-08-13 11:10:45 +02:00
|
|
|
_timer.setSingleShot(false);
|
|
|
|
|
2013-08-14 10:54:49 +02:00
|
|
|
_processor->setSize(grabWidth, grabHeight);
|
2013-08-13 12:03:00 +02:00
|
|
|
|
2013-08-14 10:54:49 +02:00
|
|
|
// Connect the QTimer to this
|
2013-08-13 11:10:45 +02:00
|
|
|
QObject::connect(&_timer, SIGNAL(timeout()), this, SLOT(action()));
|
|
|
|
}
|
|
|
|
|
|
|
|
DispmanxWrapper::~DispmanxWrapper()
|
|
|
|
{
|
2013-08-14 10:54:49 +02:00
|
|
|
// Cleanup used resources (ImageProcessor and FrameGrabber)
|
2013-08-13 11:10:45 +02:00
|
|
|
delete _processor;
|
2013-08-13 12:03:00 +02:00
|
|
|
delete _frameGrabber;
|
2013-08-13 11:10:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void DispmanxWrapper::start()
|
|
|
|
{
|
2013-08-14 10:54:49 +02:00
|
|
|
// Start the timer with the pre configured interval
|
2013-08-13 11:10:45 +02:00
|
|
|
_timer.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DispmanxWrapper::action()
|
|
|
|
{
|
2013-08-14 10:54:49 +02:00
|
|
|
// Obtain reference of the buffer-image used by the processor
|
|
|
|
RgbImage & image = _processor->image();
|
|
|
|
|
|
|
|
// Grab frame into the allocated image
|
2013-08-13 11:10:45 +02:00
|
|
|
_frameGrabber->grabFrame(image);
|
|
|
|
|
2013-08-14 10:54:49 +02:00
|
|
|
_processor->inplace_process(_ledColors);
|
|
|
|
|
|
|
|
const int _priority = 100;
|
|
|
|
_hyperion->setValue(_priority, _ledColors, _timeout_ms);
|
2013-08-13 11:10:45 +02:00
|
|
|
}
|
|
|
|
void DispmanxWrapper::stop()
|
|
|
|
{
|
2013-08-14 10:54:49 +02:00
|
|
|
// Stop the timer, effectivly stopping the process
|
2013-08-13 11:10:45 +02:00
|
|
|
_timer.stop();
|
|
|
|
}
|