dispmap/svkernelv2.h

17 lines
308 B
C
Raw Normal View History

2014-07-11 20:35:48 +04:00
#ifndef SVKERNELV2_H
#define SVKERNELV2_H
2014-07-23 20:50:12 +04:00
#include "svdefs.h"
2014-07-11 20:35:48 +04:00
#include "svabstractkernel.h"
2014-07-18 20:48:42 +04:00
2014-07-11 20:35:48 +04:00
class SvKernelV2: public SvAbstractKernel
{
public:
SvKernelV2();
virtual ~SvKernelV2();
2014-07-23 20:50:12 +04:00
void exec(SvImage *image, int line) override;
2014-07-22 20:37:29 +04:00
int rgbDiff(QRgb left, QRgb right);
2014-07-11 20:35:48 +04:00
};
#endif // SVKERNELV2_H