Archive for the ‘vision’ Category

Grassroots Mapping

Wednesday, May 26th, 2010

This is a balloon photography blog. The authors try to help to citizens with low resources to do mapping.

Grassroots Mapping.

The Fundamental Matrix Song

Monday, May 24th, 2010

A “must see” for every body involved in 3d reconstruction or computer vision

Click the link for the lyrics

The Fundamental Matrix Song.

Free Gimp tutorial PDFs | TuxRadar Linux

Tuesday, March 2nd, 2010

Free Gimp tutorial PDFs | TuxRadar Linux.

The MathWorks releases new software update

Wednesday, February 17th, 2010

Matlab and Image Processing Toolbox now offer more multi-threaded implementations of functions, and Statistics Toolbox adds parallel computing support for several functions.

via The MathWorks releases new software update.

Red Bull Illume - Image Quest 2010

Wednesday, February 17th, 2010

Beat the Deadline! Enter before Feb 28

Red Bull Illume - Image Quest 2010.

More image processing with python and opencv

Friday, October 26th, 2007

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

python for image processing

Thursday, October 25th, 2007

I am learning a bit about python programming. This programming language is becoming a popular scripting program inside oder programs such us arcgis. The most surprising thing for me is it increasing use in windows machines.

So I have decided to learn python. I have started with some easy functions from the python image library.

First I will read a pixel.

import Image

im= Image.open(“mytif.ti”);

pixel= im.getPixel((44,33));

print “And the pixel is!!: “, pixel

you can find mor info about de Python Image Library at

Home Page

Documents

face recognition in google image search

Thursday, May 31st, 2007

Google has added image recognition technologie to the image search.

It is a quite impresive application

you can read about it in arstechnica