We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea6ad4b commit 75fe1d0Copy full SHA for 75fe1d0
Basil Vision.h
@@ -0,0 +1,16 @@
1
+#pragma once
2
+
3
4
+#include <opencv2/core/core.hpp>
5
6
+#include <opencv2/opencv.hpp>
7
+#include <frc/TimedRobot.h>
8
+#include <vector>
9
+using namespace cv;
10
+using namespace std;
11
+class ImageProcess : public frc::TimedRobot {
12
+ void makeGrid(Mat img, int cellSize);
13
+ Mat makeGrid(char *fileName, char *result);
14
+ void RobotInit();
15
+ std::string getPutTextData(int count);
16
+}
0 commit comments