You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
675 B

#include "header/IProcessStrategy.h"
#include <QImage>
#include <QPixmap>
void IProcessStrategy::slt_process(Image* inputFrame)
{
emit sgl_outputReady(processKernel(inputFrame));
}
IProcessStrategy::IProcessStrategy(const Context context,
const QString kernelPath,
const QString kernelName)
{
try
{
_CLContext = context;
_kernel = _openCLHelper.createKernel(context, kernelPath, kernelName);
}
catch(...)
{
qDebug() << "An error occured while creating CL strategy.";
throw;
}
}
Device IProcessStrategy::getDefaultDevice(const Context &context)
{
return (_openCLHelper.getDevicesByContext(context)[0]);
}