Vol
Repository source: Vol
Description¶
Creating a image data dataset. Scalar data is generated from the equation for a sphere. Volume dimensions are 26^3.
Info
See Figure 5-18 in Chapter 5 the VTK Textbook.
Other languages
See (Python), (PythonicAPI), (Java)
Question
If you have a question about this example, please use the VTK Discourse Forum
Code¶
Vol.cxx
#include <vtkActor.h>
#include <vtkContourFilter.h>
#include <vtkDoubleArray.h>
#include <vtkNamedColors.h>
#include <vtkNew.h>
#include <vtkPointData.h>
#include <vtkPolyDataMapper.h>
#include <vtkProperty.h>
#include <vtkRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkRenderer.h>
#include <vtkStructuredPoints.h>
int main(int, char*[])
{
vtkNew<vtkNamedColors> colors;
vtkNew<vtkRenderer> renderer;
vtkNew<vtkRenderWindow> renWin;
renWin->AddRenderer(renderer);
vtkNew<vtkRenderWindowInteractor> iren;
iren->SetRenderWindow(renWin);
vtkNew<vtkStructuredPoints> vol;
vol->SetDimensions(26, 26, 26);
vol->SetOrigin(-0.5, -0.5, -0.5);
auto sp = 1.0 / 25.0;
vol->SetSpacing(sp, sp, sp);
vtkNew<vtkDoubleArray> scalars;
scalars->SetNumberOfComponents(1);
scalars->SetNumberOfTuples(26 * 26 * 26);
for (auto k = 0; k < 26; k++)
{
auto z = -0.5 + k * sp;
auto kOffset = k * 26 * 26;
for (auto j = 0; j < 26; j++)
{
auto y = -0.5 + j * sp;
auto jOffset = j * 26;
for (auto i = 0; i < 26; i++)
{
auto x = -0.5 + i * sp;
auto s = x * x + y * y + z * z - (0.4 * 0.4);
auto offset = i + jOffset + kOffset;
scalars->InsertTuple(offset, &s);
}
}
}
vol->GetPointData()->SetScalars(scalars);
vtkNew<vtkContourFilter> contour;
contour->SetInputData(vol);
contour->SetValue(0, 0.0);
vtkNew<vtkPolyDataMapper> volMapper;
volMapper->SetInputConnection(contour->GetOutputPort());
volMapper->ScalarVisibilityOff();
vtkNew<vtkActor> volActor;
volActor->SetMapper(volMapper);
volActor->GetProperty()->EdgeVisibilityOn();
volActor->GetProperty()->SetColor(colors->GetColor3d("Salmon").GetData());
renderer->AddActor(volActor);
renderer->SetBackground(colors->GetColor3d("SlateGray").GetData());
renWin->SetSize(512, 512);
renWin->SetWindowName("Vol");
// interact with data
renWin->Render();
iren->Start();
return EXIT_SUCCESS;
}
CMakeLists.txt¶
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(Vol)
find_package(VTK COMPONENTS
CommonColor
CommonCore
CommonDataModel
FiltersCore
InteractionStyle
RenderingContextOpenGL2
RenderingCore
RenderingFreeType
RenderingGL2PSOpenGL2
RenderingOpenGL2
)
if (NOT VTK_FOUND)
message(FATAL_ERROR "Vol: 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(Vol MACOSX_BUNDLE Vol.cxx )
target_link_libraries(Vol PRIVATE ${VTK_LIBRARIES}
)
# vtk_module_autoinit is needed
vtk_module_autoinit(
TARGETS Vol
MODULES ${VTK_LIBRARIES}
)
Download and Build Vol¶
Click here to download Vol and its CMakeLists.txt file. Once the tarball Vol.tar has been downloaded and extracted,
cd Vol/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:
./Vol
WINDOWS USERS
Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.