34 lines
333 B
C++
34 lines
333 B
C++
|
#ifndef HOUGH_MACHINE_C
|
||
|
#define HOUGH_MACHINE_C
|
||
|
|
||
|
#include <QtGlobal>
|
||
|
#include <QMainWindow>
|
||
|
#include <QColor>
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
#include <math.h>
|
||
|
|
||
|
class HoughMachine {
|
||
|
|
||
|
private:
|
||
|
|
||
|
|
||
|
public:
|
||
|
HoughMachine() {
|
||
|
|
||
|
};
|
||
|
|
||
|
~HoughMachine() {
|
||
|
|
||
|
};
|
||
|
|
||
|
void convertToMonochrome(void) {
|
||
|
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|