16 lines
283 B
C++
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
|