AprilTags are a type of fiducial marker. Fiducials, or more simply “markers,” are reference objects that are placed in the field of view of the camera when an image or video frame is captured. AprilTags are a specific type of fiducial marker, consisting of a black square with a white foreground that has been generated in a particular pattern
Filters in image processing are just what the name suggests, Filter. They are typically a mask array of the same size as the original image which when superimposed on the ordinal image, extracts only the attributes that we are interested in.
.
├── ARdetect.py # python code file for problem 1.a and 1.b
├── TestudoSuperimpose.py # python code file for problem 2.a
├── CubeAR.py # python code file for problem 2.b
├── Results # contains output images
├── 1tagvideo.mp4 # input video file
├── testudo.png # image to be superimposed
└── README.md
- For executing AR TAG detect and decode ( Problem 1.a and 1.b.)
python3 Ardetect.py
- For executing image superimposition ( Problem 2.a )
python3 TestudoSuperimpose.py
- For executing solution to AR TAG detect and decode ( Problem 2.b )
python3 CubeAR.py
To close the output window at any time press esc
After FFT | Detect and Decode |
---|---|
Superimpose | #3D cube Project |
Detecting the April Tag in any frame of Tag1 video (just one frame).
Track the detected AR Tag and superimpose an image and then a 3D cube while maintaining the orientation
- Thresholding - Segmentation techniques in computer vision to separate the foreground from the background of the image. Basically selecting value T, all pixel intensities less than T = 0, and all pixel values greater than T = 255
References: