User:Emily/Prototyping/Trimester 02/03: Difference between revisions
No edit summary |
No edit summary |
||
(4 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
mogrify -canny 0x1+10%+30% *.jpg | mogrify -canny 0x1+10%+30% *.jpg | ||
then need ffmpeg to make images into a video: | then need ffmpeg to make images into a video: | ||
TEST RESULT: http://youtu.be/DxuVLJEd6iI<br> | |||
more information source: https://trac.ffmpeg.org/wiki/Create%20a%20video%20slideshow%20from%20images | |||
<br> | <br> | ||
---- | ---- | ||
<br> | <br> | ||
Video to images - Sorting images - Back to video<br> | Video to images - Sorting images - Back to video (refined)<br> | ||
TEST RESULT: http://youtu.be/Y3A5Hq5NeNE<br> | |||
Source: http://pzwart2.wdka.hro.nl/mediadesign/Prototyping/the-networked-image/python-editing-brightness | |||
<br> | <br> | ||
---- | ---- | ||
<br> | <br> | ||
Image compare and graph<br> | Image compare and graph (the networked image)<br> | ||
<br> | <br> | ||
---- | ---- | ||
Line 23: | Line 24: | ||
Then I want to make this in real time. When click on the video it plays, when hit again, it generates a image(stop at this image as well) which is produced by previous way.<br> | Then I want to make this in real time. When click on the video it plays, when hit again, it generates a image(stop at this image as well) which is produced by previous way.<br> | ||
:[[ffmpeg]] | Link: [[ffmpeg]] |
Latest revision as of 12:08, 11 March 2015
Edge Detection
need imagemagick: mogrify -resize 480x *.jpg mogrify -canny 0x1+10%+30% *.jpg then need ffmpeg to make images into a video:
TEST RESULT: http://youtu.be/DxuVLJEd6iI
more information source: https://trac.ffmpeg.org/wiki/Create%20a%20video%20slideshow%20from%20images
Video to images - Sorting images - Back to video (refined)
TEST RESULT: http://youtu.be/Y3A5Hq5NeNE
Source: http://pzwart2.wdka.hro.nl/mediadesign/Prototyping/the-networked-image/python-editing-brightness
Image compare and graph (the networked image)
The idea of video to Image
To extract frames from video(one image per second?), then overly them with certain transparency(to make the transparency of final image to be one).
|
Then I want to make this in real time. When click on the video it plays, when hit again, it generates a image(stop at this image as well) which is produced by previous way.
Link: ffmpeg