clone from git://git.blender.org/blender.git
This branch contains the code for the "stereoscopy support in Blender" journey.
(outdated)
Render Views panel:
Switch View node:
Image node (views options):
3-D display options (User Preferences > System):
3-D preview in Image Editor
- See Multiview Addon for the camera rig system
- Youtube recording
- Instructions for testing
Known bugs:
- (see the issues in the github tracker)
- Missing listeners - not everything is updating when they should if you change things after rendering
Compositor elements not yet tackled:
- Viewer Node
Built-in Stereo Camera: If you read the original code proposal you should remember the original idea of having a builtin stereo-camera. I didn't drop this idea, but there will be changes.
We will have a new stereo camera with all the nice properties (editable in 3D!). Then you just assign this camera twice to two views in the Render View panel. The view panel can see the special camera and give a menu where you can set left or right.
OR we will have addons for that ;) UPDATE: I'm testing an addon and I think it may work well with it. So no builtin stereo camera for now.
- Viewer Node showing only one view
- Sequencer not implemented
Original proposal: http://wiki.blender.org/index.php/User:Dfelinto/Stereoscopy
Mailing list discussion: http://lists.blender.org/pipermail/bf-committers/2013-March/039601.html
3d formats: http://news.cnet.com/8301-17938_105-20063310-1/how-3d-content-works-blu-ray-vs-broadcast/
Active vs Passive: http://reviews.cnet.com/8301-33199_7-57437344-221/active-3d-vs-passive-3d-whats-better/
Read multiview exrSee multiview in UV/image editor as monoWrite multiview exrRender in multiviewCompo in multiviewSee multiview in UV/image editor as stereoViewport preview- Sequencer
- ?
Note: Blender svn OpenEXR for windows may be buggy, they used to only work if you build a debug Blender.
For tips in building Blender for your system refer to the Blender Wiki:
Following instructions are for OSX with git 1.8.3.4. Don't use them literally try to make sense of them first.
- mkdir multiview
- cd multiview
- git clone https://github.com/dfelinto/blender.git --single-branch -b multiview blender
- cd blender
- git submodule update --init --recursive --remote
- cd ..
- ln -s ~/blender/lib lib; #HARDCODED folder to match my system
- mkdir release
- cd release
- ccmake ../blender
- make -j7 install
To update:
- cd multiview
- cd blender
- git pull --rebase
- git submodule update --recursive --remote
- cd ../release
- make -j7 install





