http://www.cs.cmu.edu/afs/cs/project/cil/ftp/html/txtv-source.html
and
http://www.efg2.com/Lab/Library/ImageProcessing/Algorithms.htm
They're useful links to code and documentation and sample data and examples.
sabato 27 giugno 2009
mercoledì 27 maggio 2009
Gaussian Blur: C++ implementation
http://www.librow.com/articles/article-9
At the link above you can find some code for implementing a C++ gaussian blur filter.
At the link above you can find some code for implementing a C++ gaussian blur filter.
sabato 16 maggio 2009
Gaussian in python
Python implementation of gaussian:
def gauss(x):
gaussa=math.pi(2)
gaussb=math.sqrt(gaussa)
gaussc=1/gaussb
gaussd=math.exp(-0.5*-2.00**2)
gausse= gaussc*gaussd
return gausse
print gausse
from http://www.experts-exchange.com/Programming/Languages/Scripting/Python/Q_23657938.html
giovedì 14 maggio 2009
Iscriviti a:
Post (Atom)