TU ANUNCIO / YOUR PUBLICITY

AQUÍ PODRÍA ESTAR TU ANUNCIO: / HERE COULD BE YOUR AD E-mail

domingo, 23 de febrero de 2014

Walking a road with LIDAR / Recorriendo una carretera con LIDAR

Dada una sucesión de dibujos de planta, alzado y perfiles de una carretera. ¿cómo hacer un vídeo transitando por ella?

Given a sequence of drawings of plan, elevation and sections of a road. How to make a video passing by it?
Fuente Bounded-Roads
En un principio empezamos a pensar en un crear un gif animado apoyándonos en el programa convert de Image Imagick
At first we started thinking about a create an animated gif relying on the convert program Image Imagick.

convert -delay 500 *.png animación.gif

De esta manera está hecho el ejemplo siguiente:
In this way is made the following example:


Claro está que en nuestro caso tenemos:
In our case we have:



Como se puede ver son tremendamente pesadas (para la poca calidad a que hemos tenido que degradarlas). Además hay otro problema y es que este programa no puede respetar el orden que hubiéramos querido. Una aplicación que nos permite controlar el orden es giftedmotion-1.23.jar  (se puede descargar desde su página http://www.onyxbits.de/giftedmotion)

Una solución mejor es utilizar GIMP (se encuentran varios tutoriales fácilmente). Como resumen diremos que se abre GIMP, abrir como capas y guardar como gif.  Ya está así de fácil.

As you can see they are extremely heavy (for the poor quality that we had to degrade). Also another problem is that this program can not respect the order we would have liked. An application that allows us to control the order is GiftedMotion-1.23.jar (you can download from their page http://www.onyxbits.de/giftedmotion

A better solution is to use GIMP (there are several tutorials easily). In summary we can say that GIMP opens, open as layers and save as jpg. Whether it is that easy.

¿Y si queremos un .avi para subir a youTube?
If we want up a avi file to youTube:


Una buena ayuda sería partir de http://www.mikekohn.net/stuff/mandel.php y bajar su programa gif2avi.tar.gz. (seguidos de los típicos paso de descomprimir y make) u optar por la solución de windows. Con la sintaxis:

Una buena ayuda sería partir de http://www.mikekohn.net/stuff/mandel.php y bajar su programa gif2avi.tar.gz. (seguidos de los típicos paso de descomprimir y make) u optar por la solución de windows. Con la sintaxis:

It would be a good help to use the program gif2avi gif2avi.tar.gz http://www.mikekohn.net/stuff/mandel.php and download your program. (followed by the typical steps to unpack and make) or opt for the solution of windows. With the syntax:

        gif2avi <outfile.avi> <directory with gif's> <frames per second>. 

En nuestro ejemplo
In our example:

        convert origen.gif -resize 544x240! destino.gif
        convert destino.gif frames/frame%05d.gif
        gif2avi pelicula.avi /frames 30 


Y se sube a youTube:


FIN. The end

No hay comentarios:

Publicar un comentario