CombineImages
Repository source: CombineImages
Description¶
This example takes two images and superimposes them. The opacity of each image can be set to control how they are combined.
Question
If you have a question about this example, please use the VTK Discourse Forum
Code¶
CombineImages.cxx
#include <vtkImageBlend.h>
#include <vtkImageData.h>
#include <vtkImageReader2.h>
#include <vtkImageReader2Factory.h>
#include <vtkImageViewer2.h>
#include <vtkNamedColors.h>
#include <vtkNew.h>
#include <vtkRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkRenderer.h>
#include <vtkSmartPointer.h>
#include <string>
int main(int argc, char* argv[])
{
  vtkNew<vtkNamedColors> colors;
  // Parse input arguments.
  if (argc != 3)
  {
    std::cerr << "Usage: " << argv[0]
              << " Input1Filename Input2Filename  e.g. Ox.jpg Gourds2.jpg"
              << std::endl;
    return EXIT_FAILURE;
  }
  // Read the images.
  vtkNew<vtkImageReader2Factory> readerFactory;
  vtkSmartPointer<vtkImageReader2> imgReader1;
  imgReader1.TakeReference(readerFactory->CreateImageReader2(argv[1]));
  imgReader1->SetFileName(argv[1]);
  vtkSmartPointer<vtkImageReader2> imgReader2;
  imgReader2.TakeReference(readerFactory->CreateImageReader2(argv[2]));
  imgReader2->SetFileName(argv[2]);
  // Combine the images (blend takes multiple connections on the 0th input
  // port).
  vtkNew<vtkImageBlend> blend;
  blend->AddInputConnection(imgReader1->GetOutputPort());
  blend->AddInputConnection(imgReader2->GetOutputPort());
  blend->SetOpacity(0, 0.5);
  blend->SetOpacity(1, 0.5);
  // Display the result.
  vtkNew<vtkRenderWindowInteractor> renderWindowInteractor;
  vtkNew<vtkImageViewer2> imageViewer;
  imageViewer->SetInputConnection(blend->GetOutputPort());
  imageViewer->SetupInteractor(renderWindowInteractor);
  imageViewer->GetRenderer()->ResetCamera();
  imageViewer->GetRenderer()->SetBackground(
      colors->GetColor3d("Peru").GetData());
  imageViewer->GetRenderWindow()->SetWindowName("CombineImages");
  imageViewer->GetRenderer()->Render();
  renderWindowInteractor->Initialize();
  renderWindowInteractor->Start();
  return EXIT_SUCCESS;
}
CMakeLists.txt¶
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(CombineImages)
find_package(VTK COMPONENTS 
  CommonColor
  CommonCore
  CommonDataModel
  IOImage
  ImagingCore
  InteractionImage
  InteractionStyle
  RenderingContextOpenGL2
  RenderingCore
  RenderingFreeType
  RenderingGL2PSOpenGL2
  RenderingOpenGL2
)
if (NOT VTK_FOUND)
  message(FATAL_ERROR "CombineImages: 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(CombineImages MACOSX_BUNDLE CombineImages.cxx )
  target_link_libraries(CombineImages PRIVATE ${VTK_LIBRARIES}
)
# vtk_module_autoinit is needed
vtk_module_autoinit(
  TARGETS CombineImages
  MODULES ${VTK_LIBRARIES}
)
Download and Build CombineImages¶
Click here to download CombineImages and its CMakeLists.txt file. Once the tarball CombineImages.tar has been downloaded and extracted,
cd CombineImages/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:
./CombineImages
WINDOWS USERS
Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.
