笔迹鉴别程序
考试的笔迹鉴别程序,分辨出不同人写的笔迹
This commit is contained in:
13
测试/服务器测试/输出文件/输出待检测检测文件try catch/Point.h
Normal file
13
测试/服务器测试/输出文件/输出待检测检测文件try catch/Point.h
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
头文件:Point.h 图像中的像素点定义
|
||||
*/
|
||||
#pragma once
|
||||
class Point{
|
||||
private:
|
||||
|
||||
public:
|
||||
int x;
|
||||
int y;
|
||||
|
||||
void setpoint(int a,int b){x=a;y=b;}
|
||||
};
|
||||
Reference in New Issue
Block a user