sudo apt install python3-pip
pip3 install opencv-contrib-python==4.7.0.72
pip3 install numpy==1.21.5
Note: We suggest that you should use above mentioned versions for opencv-contrib-python and numpy as they are tested to be stable for this theme, but you may choose other version only if you are confident to do so. Doing so, will not guarantee support from e-Yantra team.
Images are array of pixels, hence objects in an image are also "set of pixels"
An ARUCO marker, when viewed in an image, is a Quadrilateral shape defined by some set of pixels. We can refer to that shape by different properties of the shape, like: corners, area, length of sides, diagonals, medians, bisectors and what not !
By looking into the image shown above, you would know why I refered to Quadrilaterals instead of Squares
One good & mostly enough resource : This Wikipedia Page