IsoSubsample
Repository source: IsoSubsample
Description¶
An artifact called aliasing occurs when sub-sampling and is often associated with stair-stepping edges. Sampling theory proves that discrete sampled signals with spacing S, completely describe continuous functions composed of frequencies less than S/2. When a signal is sub-sampled, its capacity to hold high frequency information is reduced. However, the high frequency energy does not disappear. It wraps around the frequency spectrum appearing as a low frequency alias artifact. The solution, which eliminates this artifact, is to low-pass filter before sub-sampling.
Low-pass smoothing reduces the high frequency range of an image that would cause aliasing. The same aliasing phenomena occurs when acquiring data. If a signal from an analog source contains high frequencies, saving the analog data in a discrete form requires sub-sampling that will introduce alias artifacts. For this reason, it is common practice to acquire data at high resolutions,then smooth and subsample to reduce the image to a manageable size.
This example demonstrates aliasing that occurs when a high-frequency signal is sub-sampled. High frequencies appear as low frequency artifacts. The left image is an isosurface of a skull after sub-sampling. The right image used a low-pass filter before sub-sampling to reduce aliasing.
Info
See this figure in Chapter 10 the VTK Textbook.
Info
The example uses src/Testing/Data/FullHead.mhd
which references src/Testing/Data/FullHead.raw.gz
.
Other languages
See (Python), (PythonicAPI)
Question
If you have a question about this example, please use the VTK Discourse Forum
Code¶
IsoSubsample.cxx
#include <vtkActor.h>
#include <vtkCamera.h>
#include <vtkImageGaussianSmooth.h>
#include <vtkImageMarchingCubes.h>
#include <vtkImageReader2.h>
#include <vtkImageReader2Factory.h>
#include <vtkImageShrink3D.h>
#include <vtkNamedColors.h>
#include <vtkNew.h>
#include <vtkPolyDataMapper.h>
#include <vtkProperty.h>
#include <vtkRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkRenderer.h>
#include <vtkSmartPointer.h>
int main(int argc, char* argv[])
{
// Verify input arguments
if (argc != 2)
{
std::cout << "Usage: " << argv[0] << " Filename e.g FullHead.mhd"
<< std::endl;
return EXIT_FAILURE;
}
vtkNew<vtkNamedColors> colors;
// Read the image
vtkNew<vtkImageReader2Factory> readerFactory;
vtkSmartPointer<vtkImageReader2> reader;
reader.TakeReference(readerFactory->CreateImageReader2(argv[1]));
reader->SetFileName(argv[1]);
reader->Update();
// Smoothed pipeline
vtkNew<vtkImageGaussianSmooth> smooth;
smooth->SetDimensionality(3);
smooth->SetInputConnection(reader->GetOutputPort());
smooth->SetStandardDeviations(1.75, 1.75, 0.0);
smooth->SetRadiusFactor(2);
vtkNew<vtkImageShrink3D> subsampleSmoothed;
subsampleSmoothed->SetInputConnection(smooth->GetOutputPort());
subsampleSmoothed->SetShrinkFactors(4, 4, 1);
vtkNew<vtkImageMarchingCubes> isoSmoothed;
isoSmoothed->SetInputConnection(smooth->GetOutputPort());
isoSmoothed->SetValue(0, 1150);
vtkNew<vtkPolyDataMapper> isoSmoothedMapper;
isoSmoothedMapper->SetInputConnection(isoSmoothed->GetOutputPort());
isoSmoothedMapper->ScalarVisibilityOff();
vtkNew<vtkActor> isoSmoothedActor;
isoSmoothedActor->SetMapper(isoSmoothedMapper);
isoSmoothedActor->GetProperty()->SetColor(
colors->GetColor3d("Ivory").GetData());
// Unsmoothed pipeline
// Sub sample the data
vtkNew<vtkImageShrink3D> subsample;
subsample->SetInputConnection(reader->GetOutputPort());
subsample->SetShrinkFactors(4, 4, 1);
vtkNew<vtkImageMarchingCubes> iso;
iso->SetInputConnection(subsample->GetOutputPort());
iso->SetValue(0, 1150);
vtkNew<vtkPolyDataMapper> isoMapper;
isoMapper->SetInputConnection(iso->GetOutputPort());
isoMapper->ScalarVisibilityOff();
vtkNew<vtkActor> isoActor;
isoActor->SetMapper(isoMapper);
isoActor->GetProperty()->SetColor(colors->GetColor3d("Ivory").GetData());
// Rendering Pipeline
// Setup render window, renderer, and interactor
double leftViewport[4] = {0.0, 0.0, 0.5, 1.0};
double rightViewport[4] = {0.5, 0.0, 1.0, 1.0};
vtkNew<vtkRenderer> rendererLeft;
rendererLeft->SetViewport(leftViewport);
vtkNew<vtkRenderer> rendererRight;
rendererRight->SetViewport(rightViewport);
vtkNew<vtkRenderWindow> renderWindow;
renderWindow->AddRenderer(rendererLeft);
renderWindow->AddRenderer(rendererRight);
vtkNew<vtkRenderWindowInteractor> renderWindowInteractor;
renderWindowInteractor->SetRenderWindow(renderWindow);
rendererLeft->AddActor(isoActor);
rendererRight->AddActor(isoSmoothedActor);
rendererLeft->GetActiveCamera()->SetFocalPoint(0.0, 0.0, 0.0);
rendererLeft->GetActiveCamera()->SetPosition(0.0, -1.0, 0.0);
rendererLeft->GetActiveCamera()->SetViewUp(0.0, 0.0, -1.0);
rendererLeft->ResetCamera();
rendererLeft->GetActiveCamera()->Azimuth(-20.0);
rendererLeft->GetActiveCamera()->Elevation(20.0);
rendererLeft->ResetCameraClippingRange();
rendererLeft->SetBackground(colors->GetColor3d("SlateGray").GetData());
rendererRight->SetBackground(colors->GetColor3d("LightSlateGray").GetData());
rendererRight->SetActiveCamera(rendererLeft->GetActiveCamera());
renderWindow->SetSize(640, 480);
renderWindow->SetWindowName("IsoSubsample");
renderWindow->Render();
renderWindowInteractor->Start();
return EXIT_SUCCESS;
}
CMakeLists.txt¶
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(IsoSubsample)
find_package(VTK COMPONENTS
CommonColor
CommonCore
FiltersGeneral
IOImage
ImagingCore
ImagingGeneral
InteractionStyle
RenderingContextOpenGL2
RenderingCore
RenderingFreeType
RenderingGL2PSOpenGL2
RenderingOpenGL2
)
if (NOT VTK_FOUND)
message(FATAL_ERROR "IsoSubsample: 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(IsoSubsample MACOSX_BUNDLE IsoSubsample.cxx )
target_link_libraries(IsoSubsample PRIVATE ${VTK_LIBRARIES}
)
# vtk_module_autoinit is needed
vtk_module_autoinit(
TARGETS IsoSubsample
MODULES ${VTK_LIBRARIES}
)
Download and Build IsoSubsample¶
Click here to download IsoSubsample and its CMakeLists.txt file. Once the tarball IsoSubsample.tar has been downloaded and extracted,
cd IsoSubsample/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:
./IsoSubsample
WINDOWS USERS
Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.