Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
24th July 2012, 22:42 | #1 | Link |
Registered User
Join Date: Dec 2011
Posts: 27
|
how to zoom in on a single pixel without blurring?
I'm trying to figure out how to make a video where there's a zoom going on from the full image and into a single pixel WITHOUT the pixels being blurred during zooming.
I've tried 'animate' but that won't allow the use of PointResize as argument, and BicubicResize does the blur-thing I'm trying to avoid. I also tried using 'zoom.dll', but couldn't avoid the blurring there either. Anyone with an idea on how to do this? Thanks. |
25th July 2012, 00:04 | #2 | Link |
Registered User
Join Date: Apr 2002
Location: Germany
Posts: 5,391
|
Animating PointResize does work for me. Are you sure you don't have an error in syntax or parameters?
Code:
vid animate(1,100,"pointresize", width(vid),height(vid), 0,0,width(vid),height(vid), width(vid),height(vid), 100,150,1,1)
__________________
- We´re at the beginning of the end of mankind´s childhood - My little flickr gallery. (Yes indeed, I do have hobbies other than digital video!) |
25th July 2012, 00:53 | #3 | Link |
Registered User
Join Date: Dec 2011
Posts: 27
|
Apparently I did have something wrong with the line I was attempting to use.
I was using this line (which works until I replace BicubicResize with pointresize): Code:
clip=last Animate(10,400,"BicubicResize", clip,1920,1080,1.0/3,1.0/3,0,0,1920.0,1080.0, \ clip,1920,1080,1.0/3,1.0/3,960.0,540.0,1.0,1.0) Thanks a lot Ahhhhhh, figured out the error now. This line works: Code:
Animate(0,2000,"pointresize", clip,1920,1080,960.0,540.0,1.0,1.0, clip,1920,1080,0,0,1920.0,1080.0) Last edited by JELSTUDIO; 25th July 2012 at 01:10. |
Tags |
blur, pixel, pixelated, zoom |
Thread Tools | Search this Thread |
Display Modes | |
|
|