2013-08-13 11:10:45 +02:00
|
|
|
// QT includes
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QDateTime>
|
|
|
|
|
|
|
|
// Hyperion includes
|
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
|
|
|
|
2013-08-17 16:12:42 +02:00
|
|
|
// Local-dispmanx includes
|
|
|
|
#include <dispmanx-grabber/DispmanxWrapper.h>
|
2013-08-13 11:10:45 +02:00
|
|
|
#include "DispmanxFrameGrabber.h"
|
|
|
|
|
2013-08-17 16:12:42 +02:00
|
|
|
|
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-23 21:40:42 +02:00
|
|
|
_priority(1000),
|
2013-08-13 11:10:45 +02:00
|
|
|
_timer(),
|
2013-08-14 17:02:09 +02:00
|
|
|
_image(grabWidth, grabHeight),
|
2013-08-14 10:54:49 +02:00
|
|
|
_frameGrabber(new DispmanxFrameGrabber(grabWidth, grabHeight)),
|
|
|
|
_processor(ImageProcessorFactory::getInstance().newImageProcessor()),
|
2013-11-11 10:00:37 +01:00
|
|
|
_ledColors(hyperion->getLedCount(), ColorRgb{0,0,0}),
|
2013-08-14 10:54:49 +02:00
|
|
|
_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
|
|
|
// Grab frame into the allocated image
|
2013-08-14 17:02:09 +02:00
|
|
|
_frameGrabber->grabFrame(_image);
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-08-14 17:02:09 +02:00
|
|
|
_processor->process(_image, _ledColors);
|
2013-08-14 10:54:49 +02:00
|
|
|
|
2013-08-18 13:33:56 +02:00
|
|
|
_hyperion->setColors(_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();
|
|
|
|
}
|
2013-09-23 22:33:38 +02:00
|
|
|
|
2013-10-02 09:46:12 +02:00
|
|
|
void DispmanxWrapper::setGrabbingMode(const GrabbingMode mode)
|
2013-09-23 22:33:38 +02:00
|
|
|
{
|
2013-10-02 09:46:12 +02:00
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case GRABBINGMODE_VIDEO:
|
2013-11-12 14:45:42 +01:00
|
|
|
_frameGrabber->setFlags(DISPMANX_SNAPSHOT_NO_RGB|DISPMANX_SNAPSHOT_FILL);
|
|
|
|
start();
|
|
|
|
break;
|
2013-11-14 10:05:57 +01:00
|
|
|
case GRABBINGMODE_AUDIO:
|
|
|
|
case GRABBINGMODE_PHOTO:
|
2013-10-02 09:46:12 +02:00
|
|
|
case GRABBINGMODE_MENU:
|
2013-11-14 19:51:10 +01:00
|
|
|
case GRABBINGMODE_INVALID:
|
2013-10-02 09:46:12 +02:00
|
|
|
_frameGrabber->setFlags(0);
|
|
|
|
start();
|
|
|
|
break;
|
|
|
|
case GRABBINGMODE_OFF:
|
2013-09-23 22:33:38 +02:00
|
|
|
stop();
|
2013-10-02 09:46:12 +02:00
|
|
|
break;
|
|
|
|
}
|
2013-09-23 22:33:38 +02:00
|
|
|
}
|