I am trying to generate a dense disparity map with OpenCV's ORB detectors. I followed this tutorial and understand how it generates its disparity map.
However, I don't understand how the code in the tutorial generates a dense disparity map because I cannot find any portion of the code that calculates the disparity of pixels that are not key points.
By replicating the code in the tutorial with Python, I got an accurate disparity map of only the pixels at the key point, but not the dense disparity map of the whole image, can anyone explain how did the tutorial find the dense disparity map of the whole image with the code?