change links from samples/python2 to samples/python

This commit is contained in:
Alexander Alekhin
2015-12-16 16:36:03 +03:00
parent 2ecb48921b
commit 323e24e3ef
15 changed files with 34 additions and 34 deletions

View File

@@ -156,7 +156,7 @@ in image, there is a chance that optical flow finds the next point which may loo
actually for a robust tracking, corner points should be detected in particular intervals. OpenCV
samples comes up with such a sample which finds the feature points at every 5 frames. It also run a
backward-check of the optical flow points got to select only good ones. Check
samples/python2/lk_track.py).
samples/python/lk_track.py).
See the results we got:
@@ -213,7 +213,7 @@ See the result below:
![image](images/opticalfb.jpg)
OpenCV comes with a more advanced sample on dense optical flow, please see
samples/python2/opt_flow.py.
samples/python/opt_flow.py.
Additional Resources
--------------------
@@ -221,5 +221,5 @@ Additional Resources
Exercises
---------
-# Check the code in samples/python2/lk_track.py. Try to understand the code.
2. Check the code in samples/python2/opt_flow.py. Try to understand the code.
-# Check the code in samples/python/lk_track.py. Try to understand the code.
2. Check the code in samples/python/opt_flow.py. Try to understand the code.