/* 头文件:Point.h 图像中的像素点定义 */ #pragma once class Point{ private: public: int x; int y; void setpoint(int a,int b){x=a;y=b;} };