Fixed whitespace warnings in new tutorials

This commit is contained in:
Maksim Shabunin
2014-12-05 15:33:53 +03:00
parent 6d282ddf72
commit ecfd056111
22 changed files with 4 additions and 32 deletions

View File

@@ -144,4 +144,3 @@ proper macros in their appropriate positions. Rest is done by generator scripts.
may be an exceptional cases where generator scripts cannot create the wrappers. Such functions need
to be handled manually. But most of the time, a code written according to OpenCV coding guidelines
will be automatically wrapped by generator scripts.

View File

@@ -65,4 +65,3 @@ Exercises
-# OpenCV samples contain an example of generating disparity map and its 3D reconstruction. Check
stereo_match.py in OpenCV-Python samples.

View File

@@ -172,4 +172,3 @@ Exercises
2. Fundamental Matrix estimation is sensitive to quality of matches, outliers etc. It becomes worse
when all selected matches lie on the same plane. [Check this
discussion](http://answers.opencv.org/question/18125/epilines-not-correct/).

View File

@@ -80,4 +80,3 @@ Additional Resources
Independent Elementary Features", 11th European Conference on Computer Vision (ECCV), Heraklion,
Crete. LNCS Springer, September 2010.
2. LSH (Locality Sensitive Hasing) at wikipedia.

View File

@@ -109,4 +109,3 @@ Exercises
-# In our last example, we drew filled rectangle. You modify the code to draw an unfilled
rectangle.

View File

@@ -72,4 +72,3 @@ Exercises
-# Create a Paint application with adjustable colors and brush radius using trackbars. For drawing,
refer previous tutorial on mouse handling.

View File

@@ -135,4 +135,3 @@ Exercises
-# OpenCV samples contain digits.py which applies a slight improvement of the above method to get
improved result. It also contains the reference. Check it and understand it.

View File

@@ -87,4 +87,3 @@ Exercises
Adobe Photoshop. On further search, I was able to find that same technique is already there in
GIMP with different name, "Resynthesizer" (You need to install separate plugin). I am sure you
will enjoy the technique.

View File

@@ -84,4 +84,3 @@ Additional Resources
3. [Numpy Examples List](http://wiki.scipy.org/Numpy_Example_List)
4. [OpenCV Documentation](http://docs.opencv.org/)
5. [OpenCV Forum](http://answers.opencv.org/questions/)

View File

@@ -223,4 +223,3 @@ 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.

View File

@@ -183,4 +183,3 @@ Exercises
-# OpenCV comes with a Python sample on interactive demo of camshift. Use it, hack it, understand
it.