Struct Point

Struct Documentation

struct Point

Struct representing the location of pixel.

Example
// Define a point p points to the pixel at (X=10,Y=5).
Point p = Point(10, 5);

说明

Location usually starts from the left top of image.