Explain here following things:
- What is this tutorial about ? What you will learn here?
- What are all new functions you will see here (eg :ocv:func:`borderInterpolate`)
- Some intuitive explanation of algorithm is given here
- If needed, give some equations as inline g(i,j) or next line as,
g(i,h) = \sum_{k,l} f(i+k, j+l) h(k,l)
- If required, a Numpy implementation of algorithm also can be given as a separate subsection
Numpy code comes here. To add code, do as follows :
import cv2 import numpy as np print 'import done'
Here comes the original OpenCV code with explanation. Result also can included in this itself.
To add image, do as follows :
Notes, warnings, Todo etc can be done as follows :
Note
The explanation below belongs to the book
Warning
The explanation below belongs to the book
.. todo:: The explanation below belongs to the book
.. seealso:: The explanation below belongs to the book
external urls are given as Python which points to python site.
Internal url is called as Tutorial-Template
A book is cited as [Szeliski]
We can show solutions for some common mistakes while using certain functionalities, if any.
Here we can give some additional tasks for reader to do
- like read and understand more advanced code on the same algorithm.
- Related SOF and answers.opencv.org questions
- Our own questions or tasks
Give references if any for better understanding of algorithm, like any standard textbooks, web links etc. Numbered references are given as
- Learning OpenCV
- Computer Vision Models
[Szeliski] | Computer Vision Models |