1
0
lpo-image-processing/08/do_sprawdzenia/cpp/edge_laplacian_of_gauss.h

22 lines
380 B
C
Raw Normal View History

2021-04-06 13:34:01 +02:00
#ifndef EDGE_LAPLACE_GAUSS_H
#define EDGE_LAPLACE_GAUSS_H
#include "convolution.h"
class EdgeLaplaceOfGauss : public Convolution
{
public:
EdgeLaplaceOfGauss(PNM*);
EdgeLaplaceOfGauss(PNM*, ImageViewer*);
virtual math::matrix<float> getMask();
static float getLoG(int, int, float);
int getSize();
private:
int size;
};
#endif // EDGE_LAPLACE_GAUSS_H