2014-07-25 11:32:00 +04:00
|
|
|
#ifndef SVKERNELV2_H
|
|
|
|
#define SVKERNELV2_H
|
|
|
|
|
|
|
|
#include "svdefs.h"
|
|
|
|
#include "svimage.h"
|
|
|
|
#include "svpointcloud.h"
|
|
|
|
|
|
|
|
class SvKernel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SvKernel();
|
|
|
|
virtual ~SvKernel();
|
2014-07-25 18:44:11 +04:00
|
|
|
void exec(SvPointCloud *pc, SvImage *image, int line);
|
2014-07-25 11:32:00 +04:00
|
|
|
int rgbDiff(QRgb left, QRgb right);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SVKERNELV2_H
|