We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17fb5a3 commit c1dbe4bCopy full SHA for c1dbe4b
1 file changed
VisionProj/Led/Led/Led/Hal.cpp
@@ -1,10 +1,34 @@
1
+/*************************************************
2
+Copyright: HRG
3
+Author: LiuWake
4
+Date:06/04/19
5
+Description: 输入图像位置,返回OCR结果
6
+**************************************************/
7
+
8
9
10
+Function: 识别图像上的Led数码管数字
11
12
+Calls: // Null
13
+Table Accessed: // Null
14
+Table Updated: // Null
15
+Input: string 输入文件位置,如"C:/Led/led1.jpg";
16
+ 需要是绝对位置,相对位置可能出错;注意斜杠反斜杠;
17
+Output: string 输出识别结果,eg 840
18
+Return: string 输出识别结果,eg 840
19
+Others: null
20
+*************************************************/
21
22
+//Halcon库
23
#include "HalconCpp.h"
24
using namespace HalconCpp;
25
26
+//公共库
27
using namespace std;
28
#include <string>
-
29
#include <iostream>
30
31
+//自写函数头
32
#include "Hal.h"
33
34
0 commit comments