Viz initial backport, compilation fixes, moved viz/viz.hpp header according to 2...
authorAnatoly Baksheev <no@email>
Sat, 18 Jan 2014 23:16:06 +0000 (03:16 +0400)
committerAnatoly Baksheev <no@email>
Mon, 20 Jan 2014 18:51:33 +0000 (22:51 +0400)
commit02ebc4368c34df1904f1a6f3b5eef96a496aaf9f
tree95f0f7f63c4e272a4d070fd94e021885978a01ee
parent088535fa565365c68c8fde20a66616b9880f3721
Viz initial backport, compilation fixes, moved viz/viz.hpp header according to 2.4 style
62 files changed:
CMakeLists.txt
cmake/OpenCVDetectVTK.cmake [new file with mode: 0644]
doc/tutorials/images/viz.jpg [new file with mode: 0644]
doc/tutorials/tutorials.rst
doc/tutorials/viz/creating_widgets/creating_widgets.rst [new file with mode: 0644]
doc/tutorials/viz/creating_widgets/images/red_triangle.png [new file with mode: 0644]
doc/tutorials/viz/launching_viz/images/window_demo.png [new file with mode: 0644]
doc/tutorials/viz/launching_viz/launching_viz.rst [new file with mode: 0644]
doc/tutorials/viz/table_of_content_viz/images/facedetect.jpg [new file with mode: 0644]
doc/tutorials/viz/table_of_content_viz/images/image_effects.png [new file with mode: 0644]
doc/tutorials/viz/table_of_content_viz/images/intro.png [new file with mode: 0644]
doc/tutorials/viz/table_of_content_viz/table_of_content_viz.rst [new file with mode: 0644]
doc/tutorials/viz/transformations/images/camera_view_point.png [new file with mode: 0644]
doc/tutorials/viz/transformations/images/global_view_point.png [new file with mode: 0644]
doc/tutorials/viz/transformations/transformations.rst [new file with mode: 0644]
doc/tutorials/viz/widget_pose/images/widgetpose.png [new file with mode: 0644]
doc/tutorials/viz/widget_pose/widget_pose.rst [new file with mode: 0644]
modules/core/include/opencv2/core/affine.hpp [new file with mode: 0644]
modules/core/include/opencv2/core/core.hpp
modules/viz/CMakeLists.txt [new file with mode: 0644]
modules/viz/doc/images/cpw1.png [new file with mode: 0644]
modules/viz/doc/images/cpw2.png [new file with mode: 0644]
modules/viz/doc/images/cpw3.png [new file with mode: 0644]
modules/viz/doc/images/cube_widget.png [new file with mode: 0644]
modules/viz/doc/viz.rst [new file with mode: 0644]
modules/viz/doc/viz3d.rst [new file with mode: 0644]
modules/viz/doc/widget.rst [new file with mode: 0644]
modules/viz/include/opencv2/viz/types.hpp [new file with mode: 0644]
modules/viz/include/opencv2/viz/viz3d.hpp [new file with mode: 0644]
modules/viz/include/opencv2/viz/vizcore.hpp [new file with mode: 0644]
modules/viz/include/opencv2/viz/widget_accessor.hpp [new file with mode: 0644]
modules/viz/include/opencv2/viz/widgets.hpp [new file with mode: 0644]
modules/viz/src/clouds.cpp [new file with mode: 0644]
modules/viz/src/interactor_style.cpp [new file with mode: 0644]
modules/viz/src/interactor_style.hpp [new file with mode: 0644]
modules/viz/src/precomp.hpp [new file with mode: 0644]
modules/viz/src/shapes.cpp [new file with mode: 0644]
modules/viz/src/types.cpp [new file with mode: 0644]
modules/viz/src/viz3d.cpp [new file with mode: 0644]
modules/viz/src/vizcore.cpp [new file with mode: 0644]
modules/viz/src/vizimpl.cpp [new file with mode: 0644]
modules/viz/src/vizimpl.hpp [new file with mode: 0644]
modules/viz/src/vtk/vtkCloudMatSink.cpp [new file with mode: 0644]
modules/viz/src/vtk/vtkCloudMatSink.h [new file with mode: 0644]
modules/viz/src/vtk/vtkCloudMatSource.cpp [new file with mode: 0644]
modules/viz/src/vtk/vtkCloudMatSource.h [new file with mode: 0644]
modules/viz/src/vtk/vtkImageMatSource.cpp [new file with mode: 0644]
modules/viz/src/vtk/vtkImageMatSource.h [new file with mode: 0644]
modules/viz/src/vtk/vtkOBJWriter.cpp [new file with mode: 0644]
modules/viz/src/vtk/vtkOBJWriter.h [new file with mode: 0644]
modules/viz/src/vtk/vtkTrajectorySource.cpp [new file with mode: 0644]
modules/viz/src/vtk/vtkTrajectorySource.h [new file with mode: 0644]
modules/viz/src/vtk/vtkXYZWriter.cpp [new file with mode: 0644]
modules/viz/src/vtk/vtkXYZWriter.h [new file with mode: 0644]
modules/viz/src/widget.cpp [new file with mode: 0644]
modules/viz/test/test_main.cpp [new file with mode: 0644]
modules/viz/test/test_precomp.cpp [new file with mode: 0644]
modules/viz/test/test_precomp.hpp [new file with mode: 0644]
modules/viz/test/test_tutorial2.cpp [new file with mode: 0644]
modules/viz/test/test_tutorial3.cpp [new file with mode: 0644]
modules/viz/test/test_viz3d.cpp [new file with mode: 0644]
modules/viz/test/tests_simple.cpp [new file with mode: 0644]