1 / 9

Motion Blur

Motion Blur. Efecto de velocidad a los objetos. Fenomeno Motion Blur. Se debe a que el objetivo permanece abierto durante un periodo de tiempo lo suficientemente largo como para que la escena cambie Si el tiempo es menor no se expone lo suficiente para que capte la imagen. Efecto Motion Blur.

gautam
Download Presentation

Motion Blur

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Motion Blur Efecto de velocidad a los objetos Jose María Buades Rubio

  2. Fenomeno Motion Blur • Se debe a que el objetivo permanece abierto durante un periodo de tiempo lo suficientemente largo como para que la escena cambie • Si el tiempo es menor no se expone lo suficiente para que capte la imagen

  3. Efecto Motion Blur

  4. Efecto Motion Blur

  5. Solución 1 • Imitar el tiempo de exposición renderizando la escena n veces a intervalos de tiempo iguales y combinar las n imágenes

  6. Solución 1 (continuación) glClear(GL_ACCUM_BUFFER_BIT); for(i = 0; i < max; i++) { render(dx * i, dy * i, dz * i); glAccum(GL_ACCUM, 1.f/max); } glAccum(GL_RETURN, 1.f); motionblur.exe motionblur.c

  7. Solución 2 • Renderizar n veces los objetos que se mueven, con un factor de transparencia ti para cada frame. 0 <= i < n ti = 1.0 p.e. ti = 1/n i

  8. Solución 2 (continuación) motionblur2.exe motionblur2.c

  9. Solución 3 • Billboard Dibujar la estela como un poligono orientado a camara con la textura ya preparada con el objeto movido

More Related