Python for Computer Vision


Motivation


Alternatives


MROL mapping case study


Basics


Array versus matrix


Python shells


ipython -pylab


Ipython tips


Typical workflow


Creation and reshaping


Arithmetical functions


Concatenation and Selection


Gotchas


Linear algebra

a = arange(4).reshape(2,2)
a.T
linalg.det(a)
linalg.inv(a)
norm(a)
lingalg.eig(a)
linalg.svd(a)