Before we can get down to the nitty-gritty of our feature-matching algorithm, we need to make sure that we can access the webcam and display the video stream.
Let's learn how to run the application in the next section.
Before we can get down to the nitty-gritty of our feature-matching algorithm, we need to make sure that we can access the webcam and display the video stream.
Let's learn how to run the application in the next section.
To run our app, we will need to execute the main() function routine. The following steps show us the execution of main() routine:
import cv2 as cv
from feature_matching import FeatureMatching
def main():
capture = cv.VideoCapture...