Master in Artificial Intelligence and Computer Vision

September 11th, 2011

fdfdsThis is what’s been keeping me busy lately. Will write more once I come back from holiday.

MCVAI – Master’s thesis (v.0905) PDF (English only)

Abredatos 2011

May 10th, 2011

Our project for Abredatos 2011 is available on openplaya.com.

Sleeping

April 7th, 2011

Have you ever thought about how you sleep?

Timelapses

December 29th, 2010

I’ve been playing with timelapses.

Cambodian Timelapses

September 22nd, 2010

Thailand and Cambodia

September 2nd, 2010

More pictures to come soon.

SNTalent

August 4th, 2010

This is the project that has been keeping me busy lately.

I’m looking for a developer to join us. Or someone to do contract work. Contact me directly or check it out at:
http://www.sntalent.com/referup/empleo/ref/12827

Here are some pics from the administrative interface and details on the modules and customizations used.

Drupal

vista_1

vista_2

Read the rest of this entry »

Poster PFC

May 20th, 2010

The poster for my graduation project was awarded the first prize in the UAB/EE Sabadell poster symposium held today.

PosterJosepValls

Terrassa Time Lapse 2,3

April 22nd, 2010

Terrassa Time Lapse 2

Terrassa Time Lapse 3

Floyd–Warshall

April 15th, 2010

It was 2am and I had an exercice where I had to do a Floyd–Warshall algorithm over a graph to get the maximum cost among the minimum paths. The numbers on the paper began to blur and I found it way easier to copy the pseudocode from Wikipedia and translate into Python than to actually do it. Am I awesome? Is there something wrong with me?

Here you are.

#n = num of vertices
n = 7
#this is my little aproximation to infinity... didn't want to get into the docs
m = 1e1000
#this is the matrix that describes de graph
path = [[0,4,3,m,m,m,m],[4,0,4,6,m,6,m],[3,4,0,6,m,m,m],[m,6,6,0,4,4,6],[m,m,m,4,0,6,10],[m,6,m,4,6,0,2],[m,m,m,6,10,2,0]]
for k in xrange(n):
	for i in xrange(n):
		for j in xrange(n):
			path[i][j] = min ( path[i][j], path[i][k]+path[k][j] )
			print path