Continuing with the image processing with python I have done some experiments with the opencv wrappers for python.
Its easy to configure this wrappers in windows. What I did was:
>cd C:\Program Files\OpenCV\interfaces\swig\python
>c:\Python25\python.exe setup-for-win.py build
>c:\Python25\python.exe setup-for-win.py install
from opencv import highgui
from opencv import cv
win = ’showtime’
highgui.cvNamedWindow(win)
im = highgui.cvLoadImage(‘c:\image_file.jpg’)
highgui.cvShowImage(win,im)
highgui.cvWaitKey(10)
hope this works for you