Add Test Mode and Viewfinder

This commit is contained in:
Grant Terris
2019-09-16 20:57:05 -07:00
parent 1da6d9de31
commit 6b0c05f541
7 changed files with 60 additions and 46 deletions

View File

@@ -8,23 +8,8 @@ class FaultManager
public:
FaultManager(int temp, double area)
{
if (temp)
temp = temp;
if (area)
area = area;
}
void SaveImage(cv::Mat image);
int GetTemp();
double GetArea();
private:
int temp = 100;
double area = 100;
};
#endif