1
0
lpo-image-processing/13/do_sprawdzenia/cpp/hough_lines.h
2021-05-20 19:39:32 +02:00

16 lines
283 B
C++

#ifndef HOUGH_LINES_H
#define HOUGH_LINES_H
#include "transformation.h"
class HoughLines : public Transformation
{
public:
explicit HoughLines(PNM*);
explicit HoughLines(PNM*, ImageViewer*);
QPainter* qPainter;
virtual PNM* transform();
};
#endif // HOUGH_LINES_H