In OpenCV we can use features to detection objects, and there are features which are all translation-invariant and also:
- Which scale-invariant and rotate-invariant: SIFT, SURF, BRISK, FREAK, STAR
- And which not scale-invariant and rotate-invariant: ORB
Also in OpenCV there are Optical-Flow algorithms, which are all translation-invariant: cv::calcOpticalFlowPyrLK, cv::calcOpticalFlowFarneback, cv::calcOpticalFlowSF, cv::DenseOpticalFlow::calc, gpu::BroxOpticalFlow and other for GPU.
But are there in OpenCV any Optical-Flow algorithms which rotate and/or scale invariant?