CameraActor
Repository source: CameraActor
Other languages
See (PythonicAPI), (Java)
Question
If you have a question about this example, please use the VTK Discourse Forum
Code¶
CameraActor.cxx
#include <vtkCamera.h>
#include <vtkCameraActor.h>
#include <vtkMapper.h>
#include <vtkNamedColors.h>
#include <vtkNew.h>
#include <vtkPlanes.h>
#include <vtkPolyDataMapper.h>
#include <vtkProperty.h>
#include <vtkRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkRenderer.h>
#include <vtkSphereSource.h>
int main(int, char*[])
{
vtkNew<vtkNamedColors> namedColors;
// Sphere
vtkNew<vtkSphereSource> sphereSource;
sphereSource->SetRadius(400);
sphereSource->Update();
vtkNew<vtkPolyDataMapper> sphereMapper;
sphereMapper->SetInputConnection(sphereSource->GetOutputPort());
vtkNew<vtkActor> sphereActor;
sphereActor->SetMapper(sphereMapper);
sphereActor->GetProperty()->SetDiffuseColor(
namedColors->GetColor3d("Tomato").GetData());
// Camera
vtkNew<vtkCamera> camera;
vtkNew<vtkCameraActor> cameraActor;
cameraActor->SetCamera(camera);
cameraActor->GetProperty()->SetColor(
namedColors->GetColor3d("Black").GetData());
// (Xmin,Xmax,Ymin,Ymax,Zmin,Zmax).
auto bounds = cameraActor->GetBounds();
std::cout << "bounds: " << bounds[0] << " " << bounds[1] << " " << bounds[2]
<< " " << bounds[3] << " " << bounds[4] << " " << bounds[5]
<< std::endl;
// Visualize
vtkNew<vtkRenderer> renderer;
vtkNew<vtkRenderWindow> renderWindow;
renderWindow->AddRenderer(renderer);
renderWindow->SetWindowName("CameraActor");
vtkNew<vtkRenderWindowInteractor> renderWindowInteractor;
renderWindowInteractor->SetRenderWindow(renderWindow);
renderer->AddActor(sphereActor);
// Compute the active camera parameters
renderer->ResetCamera();
// Set the camera parameters for the camera actor
camera->DeepCopy(renderer->GetActiveCamera());
renderer->AddActor(cameraActor);
// Position the camera so that we can see the camera actor
renderer->GetActiveCamera()->SetPosition(1, 0, 0);
renderer->GetActiveCamera()->SetFocalPoint(0, 0, 0);
renderer->GetActiveCamera()->SetViewUp(0, 1, 0);
renderer->GetActiveCamera()->Azimuth(30);
renderer->GetActiveCamera()->Elevation(30);
renderer->ResetCamera();
renderer->SetBackground(namedColors->GetColor3d("SlateGray").GetData());
renderWindow->Render();
renderWindowInteractor->Start();
return EXIT_SUCCESS;
}
CMakeLists.txt¶
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(CameraActor)
find_package(VTK COMPONENTS
CommonColor
CommonCore
CommonDataModel
FiltersSources
InteractionStyle
RenderingContextOpenGL2
RenderingCore
RenderingFreeType
RenderingGL2PSOpenGL2
RenderingOpenGL2
)
if (NOT VTK_FOUND)
message(FATAL_ERROR "CameraActor: Unable to find the VTK build folder.")
endif()
# Prevent a "command line is too long" failure in Windows.
set(CMAKE_NINJA_FORCE_RESPONSE_FILE "ON" CACHE BOOL "Force Ninja to use response files.")
add_executable(CameraActor MACOSX_BUNDLE CameraActor.cxx )
target_link_libraries(CameraActor PRIVATE ${VTK_LIBRARIES}
)
# vtk_module_autoinit is needed
vtk_module_autoinit(
TARGETS CameraActor
MODULES ${VTK_LIBRARIES}
)
Download and Build CameraActor¶
Click here to download CameraActor and its CMakeLists.txt file. Once the tarball CameraActor.tar has been downloaded and extracted,
cd CameraActor/build
If VTK is installed:
cmake ..
If VTK is not installed but compiled on your system, you will need to specify the path to your VTK build:
cmake -DVTK_DIR:PATH=/home/me/vtk_build ..
Build the project:
make
and run it:
./CameraActor
WINDOWS USERS
Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.