In Stereoscopic (3D) film/video it is imperative that an object in the left (eye)
picture is on the exact horizontal plane as the Right (eye) picture.
Otherwise eye strain can and usually occurs.
There is another dimension to consider in Stereoscopic (3D) video. An image can not only move
left/right, up/down as in conventional 2D video. But can also move into and out of the TV screen.
The Nu-View Adapter allows two distinct views (left eye and right eye) to enter the single
lens (eye) of a camcorder in order to provide a true stereoscopic 3D image to be displayed
and/or recorded. A threaded optical adapter is first attached to the camera's filter threads,
which provides a stable optically aligned bayonet mount for the Nu-View. After the adapter
is attached, the camcorder is used in a normal manner to view and record. To duplicate a true
stereoscopic 3D experience the adapter provides the user with a simple single
convergence control which allows you to converge on objects near and far.
The Nu-View synchronizes with your camcorders field scanning. Standard PAL TV uses 50
(NTSC uses 60) fields per second (2 fields make 1 full frame). The left-eye view is
recorded in Field one, followed by the right-eye view in Field 2. This method of
recording stereoscopic 3D is called Field Sequential (FS). The image on the right
is a slowed down (approx. 10Hz) demonstration of FS working.
Click on Avisynth Icon to download the latest version.
AviSynth is a powerful tool for video post-production.
It relies on simple scripts you can create using any
text editor. It uses a simple yet powerful programming language,
complex filters can be created from basic operations, thus developing
into a sophisticated palette of useful and unique effects.
Click on zip icon to download the the filters.
C:\Program Files\VirtualDub\plugins
global plugin_directory = "C:\Program Files\VirtualDub\plugins"
Function VShift (clip, int "Y")
{
LoadVirtualDubPlugin(plugin_directory+"\fieldshift.vdf", "VShift")
return clip.ConvertToRGB.VShift(Y)
}
DirectShowSource("D:\Video.avi")
ConvertToRGB
Animate(85,330, "VShift", last,0,last,-6)
#eg. Above command will gradually displace one field vertically by 6 lines
starting at frame #85 and finishing at frame #330