1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-21 14:41:58 +08:00

moved DIS optical flow from opencv_contrib to opencv, moved TVL1 from opencv to opencv_contrib

This commit is contained in:
Vadim Pisarevsky
2018-11-09 00:48:48 +03:00
parent 2017be45db
commit 2cc5ead103
24 changed files with 2362 additions and 4142 deletions

View File

@@ -101,7 +101,7 @@ int main( int argc, const char **argv )
Mat from = imread( fromPath );
Mat to = imread( toPath );
Mat gt = optflow::readOpticalFlow( gtPath );
Mat gt = readOpticalFlow( gtPath );
std::vector< std::pair< Point2i, Point2i > > corr;
TickMeter meter;