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.
30 lines
685 B
30 lines
685 B
5 years ago
|
#ifndef GRAYMAP_H
|
||
|
#define GRAYMAP_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QMetaType>
|
||
|
#include "model/processor/IProcessStrategy.h"
|
||
|
#include "utils/OpenCLHelper.h"
|
||
|
|
||
|
typedef struct GrayMap_t
|
||
|
{
|
||
|
cl_int grayMapSelector;
|
||
|
}GrayMap_t;
|
||
|
|
||
|
|
||
|
class GrayMap : public IProcessStrategy
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
Q_INVOKABLE GrayMap(const Context context, const QString kernelPath, const QObject *parent);
|
||
|
virtual void cpuProcess(ScenGenOutput_t parameters) override;
|
||
|
virtual void finalize() override;
|
||
|
|
||
|
private:
|
||
|
KernelFunctor<Image2D, Image2D, GrayMap_t> _kernelFunctor;
|
||
|
virtual Image* processKernel(Image *frames, Buffer* scratchPad) override;
|
||
|
GrayMap_t _kernelParameters;
|
||
|
};
|
||
|
|
||
|
#endif // GRAYMAP_H
|