CG2_Tasks/hough_machine.cpp

34 lines
333 B
C++
Raw Normal View History

#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