Finally, the ORB algorithm, which is the last feature-detection algorithm we'll cover in this section.
The ORB class can be used to detect keypoints in images using the ORB, or the Oriented BRIEF (Binary Robust Independent Elementary Features) algorithm. This class encapsulates some of the methods we have already seen such as FAST or Harris to detect the keypoints. So, some of the parameters set in the class constructor or using setter functions are related to the descriptor extraction, which we'll learn about later on; nevertheless, the ORB class can be used to detect keypoints, as seen in the following example:
Here's the source code ...