# HG changeset patch # User Peter Meerwald # Date 1189081131 -7200 # Node ID f22cbbbb6814ac189f71beeb7476c4d82352b5e5 # Parent b67c5ec1a9f0cfe773da0dbe34c74e129cbc43e2 enable psyco, add README diff -r b67c5ec1a9f0 -r f22cbbbb6814 README --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README Thu Sep 06 14:18:51 2007 +0200 @@ -0,0 +1,8 @@ +Motion-compensated temporal filtering for Python + +See J.R. Ohm, Interframe Wavelet Coding -- motion picture representation +for universal scalability, 2004. + +Only Haar filtering is implemented. + +Dependencies: pywt, numpy, PIL, pysco diff -r b67c5ec1a9f0 -r f22cbbbb6814 pymctf.py --- a/pymctf.py Thu Sep 06 14:15:54 2007 +0200 +++ b/pymctf.py Thu Sep 06 14:18:51 2007 +0200 @@ -6,6 +6,9 @@ import sys import _me +import psyco +psyco.full() + # type of motion vectors UNCONNECTED = -(sys.maxint) CONNECTED = -(sys.maxint-1)