### Build and Run VTK BorderPixelSize Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Images/BorderPixelSize/index.html These shell commands guide the user through the process of setting up, configuring, building, and executing the BorderPixelSize example. It covers scenarios for both installed and custom-built VTK, and advises Windows users on path configuration. ```Shell cd BorderPixelSize/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./BorderPixelSize ``` -------------------------------- ### Build and Run VTK Example on Linux/macOS Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Tutorial/Tutorial_Step5/index.html These commands guide users through the process of building and running the 'Tutorial_Step5' example. It starts by navigating to the build directory, then runs CMake to configure the project (with an option to specify the VTK build path if not installed globally), compiles the project using 'make', and finally executes the compiled application. ```Bash cd Tutorial_Step5/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./Tutorial_Step5 ``` -------------------------------- ### Build and Run VTK PointInPolygon Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Utilities/PointInPolygon/index.html These instructions guide the user through downloading, configuring, building, and running the `PointInPolygon` example. It covers steps for both standard VTK installations and custom VTK build paths, and includes a note for Windows users regarding DLLs. ```Shell cd PointInPolygon/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./PointInPolygon ``` -------------------------------- ### Build and Run Commands for ReadRectilinearGrid VTK Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/IO/ReadRectilinearGrid/index.html These commands provide a step-by-step guide to download, configure, build, and execute the `ReadRectilinearGrid` example. It covers standard build steps and specific instructions for locating VTK if not globally installed, and notes for Windows users regarding DLLs. ```Shell cd ReadRectilinearGrid/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./ReadRectilinearGrid ``` -------------------------------- ### Build and Run LabelPlacementMapper Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Visualization/LabelPlacementMapper/index.html These commands provide a step-by-step guide to download, configure, build, and execute the LabelPlacementMapper example. It covers scenarios where VTK is either installed globally or compiled locally, and includes specific advice for Windows users regarding DLL resolution. ```Bash cd LabelPlacementMapper/build ``` ```Bash cmake .. ``` ```Bash cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Bash make ``` ```Bash ./LabelPlacementMapper ``` -------------------------------- ### Build and Run VTK SimpleRayCast Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/VolumeRendering/SimpleRayCast/index.html These commands provide a step-by-step guide to compile and execute the SimpleRayCast example. It covers changing directories, configuring the project with CMake for different VTK installation scenarios, building the application, and finally running the executable. ```Bash cd SimpleRayCast/build ``` ```Bash cmake .. ``` ```Bash cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Bash make ``` ```Bash ./SimpleRayCast ``` -------------------------------- ### Build and Run VTK ReadUnstructuredGrid Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/IO/ReadUnstructuredGrid/index.html These commands provide a step-by-step guide to configure, build, and run the ReadUnstructuredGrid example. It covers scenarios for both installed VTK and custom VTK build paths, and includes a note for Windows users regarding DLLs. ```Shell cd ReadUnstructuredGrid/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./ReadUnstructuredGrid ``` -------------------------------- ### Build and Run VTK StructuredGridOutline Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/StructuredGrid/StructuredGridOutline/index.html These shell commands provide step-by-step instructions for downloading, configuring, building, and running the `StructuredGridOutline` example. It covers initial directory navigation, CMake configuration for both installed and uninstalled VTK setups, building with `make`, and executing the compiled program. A note for Windows users regarding VTK DLLs is also included. ```Shell cd StructuredGridOutline/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./StructuredGridOutline ``` -------------------------------- ### Build and Run VTK OpenVR Sphere Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/GeometricObjects/OpenVRSphere/index.html These instructions detail how to download, build, and execute the OpenVRSphere example. It covers steps for both installed and uninstalled VTK setups, including commands for navigating directories, running CMake, compiling with make, and executing the compiled application. Windows users are reminded to add the VTK bin directory to their path. ```Bash cd OpenVRSphere/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: ./OpenVRSphere ``` -------------------------------- ### Build VTK StyleSwitch Example from Command Line Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Interaction/StyleSwitch/index.html These commands provide a step-by-step guide to configure and build the StyleSwitch example using CMake and Make. It covers scenarios where VTK is installed or requires a specific build path, and includes instructions for running the compiled executable. ```Bash cd StyleSwitch/build ``` ```Bash cmake .. ``` ```Bash cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Bash make ``` ```Bash ./StyleSwitch ``` -------------------------------- ### Build and Run VTK ProjectSphere Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Visualization/ProjectSphere/index.html This section provides step-by-step instructions to build and run the ProjectSphere example. It covers navigating to the build directory, configuring the project with CMake (for both installed and uninstalled VTK setups), building the executable using `make`, and finally running the compiled application. Windows users are advised to add the VTK bin directory to their path. ```Shell cd ProjectSphere/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./ProjectSphere ``` -------------------------------- ### Build and Run QImageToImageSource Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Qt/QImageToImageSource/index.html These instructions provide a step-by-step guide to download, configure, build, and execute the QImageToImageSource example. It covers different scenarios for VTK installation (pre-installed vs. compiled from source) and offers specific advice for Windows users regarding VTK DLL resolution, ensuring successful compilation and execution. ```Shell cd QImageToImageSource/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: ./QImageToImageSource WINDOWS USERS Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time. ``` -------------------------------- ### Build and Run VTK BoundingBox Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Utilities/BoundingBox/index.html These instructions guide users through downloading, configuring, building, and running the VTK BoundingBox example. It covers steps for both standard VTK installations and custom build paths, along with a specific note for Windows users regarding DLL resolution. ```Shell cd BoundingBox/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./BoundingBox ``` -------------------------------- ### Building and Running VTK TreeMapView Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/InfoVis/TreeMapView/index.html These instructions guide users through downloading, extracting, configuring, building, and running the `TreeMapView` example. It covers scenarios where VTK is already installed or needs its build path specified, and provides a note for Windows users regarding DLL resolution. ```Shell cd TreeMapView/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./TreeMapView ``` -------------------------------- ### Building and Running the VTK XMLPImageDataWriter Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/IO/XMLPImageDataWriter/index.html These shell commands provide a step-by-step guide to download, configure, build, and execute the `XMLPImageDataWriter` example. Instructions cover both standard VTK installations and custom build paths, with a special note for Windows users regarding runtime DLL resolution. ```Shell cd XMLPImageDataWriter/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./XMLPImageDataWriter ``` -------------------------------- ### Steps to Download, Build, and Run VTK OpenVR Cone Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/GeometricObjects/OpenVRCone/index.html These instructions detail the process for downloading the OpenVRCone example, extracting its contents, and then building and running the project. It covers scenarios where VTK is already installed or needs to be specified. Windows users are reminded to add the VTK bin directory to their system path to resolve DLLs at runtime. ```Shell cd OpenVRCone/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: ./OpenVRCone # WINDOWS USERS # Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time. ``` -------------------------------- ### Build and Run KDTreeAccessPoints Example from Source Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/DataStructures/KDTreeAccessPoints/index.html These instructions guide users through downloading, extracting, configuring with CMake (for both installed and uninstalled VTK setups), building with `make`, and finally running the KDTreeAccessPoints example. It also provides a note for Windows users regarding DLL resolution. ```Shell cd KDTreeAccessPoints/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./KDTreeAccessPoints ``` -------------------------------- ### Build and Run VTK Kitchen Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Visualization/Kitchen/index.html Instructions for downloading, configuring, building, and running the VTK Kitchen example from the command line. ```Shell cd Kitchen/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./Kitchen ``` -------------------------------- ### Build and Run VTK SeedWidget Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Widgets/SeedWidget/index.html These instructions guide users through downloading, compiling, and executing the `SeedWidget` application. It provides specific shell commands for different VTK installation scenarios and notes for Windows users regarding environment setup. ```Shell cd SeedWidget/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./SeedWidget ``` -------------------------------- ### Build and Run VTK Hello Project Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/VisualizationAlgorithms/Hello/index.html These commands provide step-by-step instructions for building and running the 'Hello' project. It covers navigating to the build directory, configuring with CMake (including specifying a custom VTK build path), compiling the project, and executing the final application. ```Bash cd Hello/build ``` ```Bash cmake .. ``` ```Bash cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Bash make ``` ```Bash ./Hello ``` -------------------------------- ### Build and Run VTK GraphAlgorithmSource Project Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Developers/GraphAlgorithmSource/index.html These commands guide the user through the process of building and running the GraphAlgorithmSource project. It includes steps for navigating to the build directory, configuring CMake for both installed and uninstalled VTK setups, compiling the project, and executing the final application. ```Shell cd GraphAlgorithmSource/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./GraphAlgorithmSource ``` -------------------------------- ### Build and Run VTK Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Images/CombiningRGBChannels/index.html These commands provide instructions for downloading, configuring, building, and running the 'CombiningRGBChannels' VTK example. It covers standard build steps and specific instructions for locating VTK if it's not in a default installation path. ```Shell cd CombiningRGBChannels/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./CombiningRGBChannels ``` -------------------------------- ### Build and Run VTK C++ Example from Source Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Utilities/Box/index.html These shell commands provide step-by-step instructions to download, configure, build, and execute the VTK 'Box' example. It covers scenarios where VTK is installed or requires a specific build path, and includes a note for Windows users regarding DLL resolution. ```Shell cd Box/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./Box ``` -------------------------------- ### Build and Run VTK BlobbyLogo Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Visualization/BlobbyLogo/index.html These commands guide the user through building and running the BlobbyLogo example. It starts by navigating to the build directory, then configures the project using CMake, with an option to specify the VTK build path if not globally installed. Finally, it compiles the project using `make` and executes the resulting application. Windows users should ensure the VTK bin directory is added to their system path for runtime DLL resolution. ```Shell cd BlobbyLogo/build ``` ```Shell 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 .. ``` ```Shell make ``` ```Shell ./BlobbyLogo ``` -------------------------------- ### Build and Run VTK RectilinearGrid Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/RectilinearGrid/RectilinearGrid/index.html These instructions guide the user through downloading, configuring, building, and executing the `RectilinearGrid` example. It covers steps for both standard VTK installations and scenarios where VTK is compiled but not installed, requiring a specific path. A note for Windows users regarding DLL resolution is also included. ```Shell cd RectilinearGrid/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./RectilinearGrid ``` -------------------------------- ### Build and Run VTK Warnings Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Developers/Warnings/index.html These commands provide instructions for downloading, building, and running the `Warnings` example. It covers steps for both standard VTK installations and custom VTK build paths, concluding with execution instructions. Windows users are advised to add the VTK bin directory to their path. ```Bash cd Warnings/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./Warnings ``` -------------------------------- ### Build and Run VTK Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Images/PickPixel/index.html These commands provide instructions for downloading, extracting, configuring, building, and running the 'PickPixel' VTK example. It covers scenarios for both installed and uninstalled VTK builds, and notes for Windows users regarding DLL paths. ```Bash cd PickPixel/build ``` ```Bash cmake .. ``` ```Bash cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Bash make ``` ```Bash ./PickPixel ``` -------------------------------- ### Build and Run VTK TransformActorCollection Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Visualization/TransformActorCollection/index.html These commands provide a step-by-step guide to compile and execute the TransformActorCollection example. It covers navigating to the build directory, configuring with CMake (for both installed and custom VTK builds), compiling with `make`, and running the executable. ```Shell cd TransformActorCollection/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./TransformActorCollection ``` -------------------------------- ### Build and Run KdTreePointLocatorClosestPoint Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/DataStructures/KdTreePointLocatorClosestPoint/index.html These shell commands provide instructions for downloading, extracting, configuring, building, and running the `KdTreePointLocatorClosestPoint` example. It covers scenarios where VTK is installed or needs a specific build path, and includes a note for Windows users regarding DLL resolution. ```Shell cd KdTreePointLocatorClosestPoint/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./KdTreePointLocatorClosestPoint ``` -------------------------------- ### Building and Running the VTK SpotLights Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Lighting/SpotLights/index.html This section provides step-by-step instructions for downloading, compiling, and executing the VTK SpotLights example. It covers scenarios where VTK is either installed globally or compiled locally, detailing the necessary `cmake` commands. It also includes a crucial note for Windows users regarding DLL resolution. ```Shell cd SpotLights/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./SpotLights ``` -------------------------------- ### Configure Project with CMake (VTK Installed) Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Qt/ImageDataToQImage/index.html Executes CMake to configure the project. This command is used when VTK is already installed and its libraries are discoverable in the system's default paths. ```Shell cmake .. ``` -------------------------------- ### Build and Run VTK AnnotatedCubeActor Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Visualization/AnnotatedCubeActor/index.html These commands provide instructions for downloading, configuring, building, and running the `AnnotatedCubeActor` example. It covers standard build steps for when VTK is installed, and how to specify the VTK build directory if it's not installed globally. Windows users are advised to add the VTK bin directory to their path to resolve DLLs at runtime. ```Shell cd AnnotatedCubeActor/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./AnnotatedCubeActor ``` -------------------------------- ### Build and Run Instructions for HighlightWithSilhouette VTK Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Picking/HighlightWithSilhouette/index.html Step-by-step shell commands to download, configure, build, and execute the HighlightWithSilhouette VTK example. Instructions cover both standard VTK installations and custom build paths, with a crucial note for Windows users regarding VTK DLLs at runtime. ```Shell cd HighlightWithSilhouette/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./HighlightWithSilhouette ``` -------------------------------- ### Build and Run VTK AxisActor Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Visualization/AxisActor/index.html These commands guide the user through the process of building and running the AxisActor example. It covers navigating to the build directory, configuring CMake for both installed and custom VTK paths, compiling the project, and executing the compiled application. ```Shell cd AxisActor/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./AxisActor ``` -------------------------------- ### Build and Run VTK Tutorial_Step1 Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Tutorial/Tutorial_Step1/index.html Provides step-by-step shell commands to navigate to the build directory, configure the project with CMake (handling both installed and custom VTK build paths), compile the project using 'make', and execute the resulting application. Windows users should ensure VTK DLLs are in their system path for runtime. ```Shell cd Tutorial_Step1/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./Tutorial_Step1 ``` -------------------------------- ### Building and Running VTK TimerLog Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Utilities/TimerLog/index.html These shell commands provide instructions for downloading, configuring, building, and executing the `TimerLog` example. It covers standard build steps and also shows how to specify a custom VTK build path. Users on Windows are reminded to add the VTK bin directory to their system path for runtime DLL resolution. ```Shell cd TimerLog/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./TimerLog ``` -------------------------------- ### Build and Run VTK GeometryFilter Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/PolyData/GeometryFilter/index.html These shell commands guide the user through downloading, configuring, building, and executing the `GeometryFilter` example. It provides `cmake` commands for different VTK installation scenarios and general `make` and run commands. ```Shell cd GeometryFilter/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./GeometryFilter ``` -------------------------------- ### Build and Run VTK DataStructureComparison Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/DataStructures/DataStructureComparison/index.html These shell commands provide a step-by-step guide to download, extract, configure, build, and run the DataStructureComparison VTK example. It covers both scenarios where VTK is installed globally or requires a specific build path. ```Shell cd DataStructureComparison/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./DataStructureComparison ``` -------------------------------- ### Building and Running VTK MatrixInverse Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Math/MatrixInverse/index.html These shell commands provide instructions for downloading, extracting, building, and running the `MatrixInverse` example. It covers scenarios where VTK is already installed or needs its build path specified. Specific advice for Windows users regarding DLL resolution is also included. ```Shell cd MatrixInverse/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./MatrixInverse ``` -------------------------------- ### Shell Commands to Build and Run VTK WalkCowB Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Rendering/WalkCowB/index.html These shell commands provide a step-by-step guide to download, configure, build, and execute the WalkCowB VTK example. It includes instructions for specifying the VTK build path if not installed globally and notes for Windows users. ```Shell cd WalkCowB/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: ./WalkCowB ``` -------------------------------- ### Build and Run VTK SelectionSource Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Filtering/SelectionSource/index.html Instructions for downloading, building, and running the `SelectionSource` example. It covers steps for both VTK installed and uninstalled scenarios, including specifying the VTK build path. It also provides a note for Windows users regarding DLLs. ```Shell cd SelectionSource/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./SelectionSource ``` -------------------------------- ### Build and Run VTK HistogramBarChart Example from Source Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Plotting/HistogramBarChart/index.html These shell commands provide a step-by-step guide to compile and execute the HistogramBarChart example. It covers navigating to the build directory, configuring with CMake (for both installed and custom VTK builds), compiling with 'make', and running the resulting executable. ```bash cd HistogramBarChart/build ``` ```bash cmake .. ``` ```bash cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```bash make ``` ```bash ./HistogramBarChart ``` -------------------------------- ### Build and Run VTK Example Project Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Picking/HighlightSelectedPoints/index.html These shell commands guide the user through the process of building and running the `HighlightSelectedPoints` example. It covers navigating to the build directory, running CMake for both installed and custom VTK build paths, compiling with `make`, and executing the compiled program. ```Shell cd HighlightSelectedPoints/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./HighlightSelectedPoints ``` -------------------------------- ### Build and Run Instructions for VTK Project (ProjectPointPlane) Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/SimpleOperations/ProjectPointPlane/index.html This section provides step-by-step instructions on how to download, build, and run the ProjectPointPlane example. It covers scenarios where VTK is installed or needs to be located, and includes specific advice for Windows users regarding DLLs. ```Shell cd ProjectPointPlane/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./ProjectPointPlane ``` -------------------------------- ### Build and Run VTK OfficeA Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/VisualizationAlgorithms/OfficeA/index.html This section provides step-by-step shell commands to download, extract, configure, build, and execute the VTK OfficeA example. It covers both scenarios where VTK is installed or compiled, including a note for Windows users regarding DLL paths. ```Shell cd OfficeA/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./OfficeA ``` -------------------------------- ### Build and Run VTK Glyph3DImage Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Visualization/Glyph3DImage/index.html These commands guide the user through configuring, building, and running the Glyph3DImage example. It includes steps for both standard VTK installations and custom VTK build paths, along with a note for Windows users regarding DLL resolution. ```Shell cd Glyph3DImage/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./Glyph3DImage ``` -------------------------------- ### Build and Run VTK PolyDataPointNormals Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/PolyData/PolyDataPointNormals/index.html These command-line instructions guide users through downloading, configuring, building, and running the PolyDataPointNormals example. It covers standard CMake usage, specifying VTK build paths for non-installed setups, and a note for Windows users regarding DLL resolution. ```Shell cd PolyDataPointNormals/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./PolyDataPointNormals ``` -------------------------------- ### Build and Run VTK DotProduct Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Images/DotProduct/index.html These shell commands provide instructions for downloading, extracting, configuring, building, and executing the DotProduct example. It includes specific `cmake` commands for different VTK installation scenarios and notes for Windows users regarding DLL resolution. ```Shell cd DotProduct/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./DotProduct ``` -------------------------------- ### Build and Run VTK ImageTransparency Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Images/ImageTransparency/index.html These shell commands guide the user through the process of downloading, extracting, configuring, building, and running the ImageTransparency example. It covers scenarios for both installed VTK and specifying a custom VTK build path, concluding with the execution of the compiled application. ```Shell cd ImageTransparency/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./ImageTransparency ``` -------------------------------- ### Build and Run VTK SimplePointsWriter Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/IO/SimplePointsWriter/index.html These instructions guide users through downloading, extracting, configuring, building, and running the SimplePointsWriter example. It provides commands for both scenarios where VTK is installed globally or compiled locally, and includes a note for Windows users regarding DLL resolution. ```Shell cd SimplePointsWriter/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./SimplePointsWriter ``` -------------------------------- ### Build and Run VTK C++ Tutorial_Step2 Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Tutorial/Tutorial_Step2/index.html These commands guide the user through the process of navigating to the build directory, configuring the project with CMake (handling both installed and custom VTK build paths), compiling the project using Make, and finally executing the compiled example. Windows users are advised to add the VTK bin directory to their system PATH for proper DLL resolution. ```Bash cd Tutorial_Step2/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: ./Tutorial_Step2 ``` -------------------------------- ### Navigate and Configure CMake for VTK Project (VTK Installed) Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Graphs/LabelVerticesAndEdges/index.html These commands guide the user to the build directory and execute CMake to configure the project, assuming VTK is already installed and discoverable in the system's path. ```Bash cd LabelVerticesAndEdges/build cmake .. ``` -------------------------------- ### Download and Build Instructions for VTK Octree Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/DataStructures/BuildOctree/index.html Instructions for downloading, configuring, building, and running the BuildOctree example. It covers steps for both VTK installed and uninstalled scenarios, including specifying the VTK build path. Specific advice for Windows users regarding DLLs is also provided. ```Bash cd BuildOctree/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./BuildOctree ``` -------------------------------- ### Shell Commands: Build and Run VTK SparseArray Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Utilities/SparseArray/index.html These shell commands provide a step-by-step guide to download, configure, build, and execute the `SparseArray` example. It covers scenarios for both installed and custom-built VTK directories, and includes a crucial note for Windows users regarding DLL resolution. ```Shell cd SparseArray/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./SparseArray ``` -------------------------------- ### Command-Line Steps to Build and Run ShareCameraQt Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Qt/ShareCameraQt/index.html This section outlines the command-line instructions for downloading, extracting, configuring, building, and executing the ShareCameraQt example. It includes specific CMake commands for locating VTK and Qt installations, and general build commands for Unix-like systems and notes for Windows users. ```Shell cd ShareCameraQt/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR=/home/me/vtk_build .. ``` ```Shell cmake -DQT_QMAKE_EXECUTABLE:FILEPATH=/usr/something/qmake .. ``` ```Shell make ``` ```Shell ./ShareCameraQt ``` -------------------------------- ### Building and Running VTK Marching Cubes Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/VisualizationAlgorithms/MarchingCasesC/index.html This section provides step-by-step shell commands to download, extract, configure, build, and execute the `MarchingCasesC` example. It includes instructions for both standard VTK installations and custom VTK build directories, along with a note for Windows users regarding DLL resolution, advising to add the VTK bin directory to the path. ```Shell cd MarchingCasesC/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./MarchingCasesC ``` -------------------------------- ### Build and Run VTK C++ Example from Source Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Utilities/ColorLookupTable/index.html These shell commands provide a step-by-step guide to download, extract, configure, build, and execute the `ColorLookupTable` example. It covers scenarios for both installed VTK and custom VTK build paths, along with a note for Windows users regarding DLLs. ```Shell cd ColorLookupTable/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./ColorLookupTable ``` -------------------------------- ### Build and Run VTK ZBuffer Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Utilities/ZBuffer/index.html This section provides step-by-step instructions for downloading, building, and running the ZBuffer example. It covers scenarios where VTK is installed or needs a specific build path, and includes a note for Windows users regarding DLLs. ```Shell cd ZBuffer/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./ZBuffer ``` -------------------------------- ### Build and Execute VTK SimplePointsReader Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/IO/SimplePointsReader/index.html These commands guide the user through the process of building and running the SimplePointsReader example. It covers navigating to the build directory, configuring with CMake (with options for installed or custom-built VTK), compiling the project using `make`, and finally executing the compiled application. ```Shell cd SimplePointsReader/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./SimplePointsReader ``` -------------------------------- ### Build and Run VTK ReportRenderWindowCapabilities Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Utilities/ReportRenderWindowCapabilities/index.html These commands provide instructions for downloading, extracting, configuring, building, and running the ReportRenderWindowCapabilities example. It covers scenarios for both installed and uninstalled VTK builds, including a note for Windows users regarding DLLs. ```Bash cd ReportRenderWindowCapabilities/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./ReportRenderWindowCapabilities ``` -------------------------------- ### Build and Run VTK TrackballCamera Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Interaction/TrackballCamera/index.html These commands guide the user through the process of building and executing the TrackballCamera example. It covers navigating to the build directory, running CMake for different VTK installation scenarios (installed vs. custom build path), compiling with `make`, and finally running the executable. Windows users are advised to add the VTK bin directory to their system path for runtime DLL resolution. ```Shell cd TrackballCamera/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./TrackballCamera ``` -------------------------------- ### Build and Run VTK MouseEvents Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Interaction/MouseEvents/index.html These shell commands guide the user through downloading, configuring, building, and running the `MouseEvents` example. It provides specific `cmake` commands for different VTK installation scenarios (installed vs. custom build path) and standard `make` and execution commands. A note for Windows users highlights the importance of adding the VTK bin directory to the system path for runtime DLL resolution. ```Bash cd MouseEvents/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: ./MouseEvents ``` -------------------------------- ### Build and Run VTK GetClassName Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Utilities/GetClassName/index.html These instructions detail how to download, build, and run the `GetClassName` example. It covers steps for both installed and uninstalled VTK setups, including specifying the VTK build path for the latter. It also provides a specific note for Windows users regarding DLL resolution. ```Bash cd GetClassName/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./GetClassName ``` -------------------------------- ### Build and Run VTK Example Project Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Graphs/LabelVerticesAndEdges/index.html These commands compile the project using `make` and then execute the resulting binary. This sequence completes the build process and launches the application. ```Bash make ./LabelVerticesAndEdges ``` -------------------------------- ### Shell Commands to Build and Run RotationsD VTK Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Rendering/RotationsD/index.html This section provides shell commands for downloading, extracting, configuring with CMake (for both installed and uninstalled VTK setups), building with 'make', and running the RotationsD executable. It outlines the typical workflow for compiling a VTK example. ```Shell cd RotationsD/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./RotationsD ``` -------------------------------- ### Build and Run VTK TransformSphere Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Rendering/TransformSphere/index.html These shell commands provide instructions for downloading, configuring, building, and running the TransformSphere example. It includes options for specifying the VTK build path if VTK is not globally installed and a note for Windows users regarding DLLs. ```Bash cd TransformSphere/build cmake .. # If VTK is not installed but compiled on your system, specify the path: cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./TransformSphere ``` -------------------------------- ### Build and Run VTK ImageAccumulateGreyscale Example (Linux/macOS) Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Images/ImageAccumulateGreyscale/index.html These commands guide users through building and running the `ImageAccumulateGreyscale` example on Unix-like systems. It covers navigating to the build directory, configuring CMake (with options for installed or custom-built VTK), compiling the project using `make`, and executing the compiled application. ```Shell cd ImageAccumulateGreyscale/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./ImageAccumulateGreyscale ``` -------------------------------- ### Build and Run VTK Example from Command Line Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Images/ImageContinuousErode3D/index.html These commands provide a sequence of steps to download, extract, configure, build, and execute the ImageContinuousErode3D VTK example. It includes instructions for both standard VTK installations and specifying a custom VTK build path, concluding with the build and run commands. ```Shell cd ImageContinuousErode3D/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./ImageContinuousErode3D ``` -------------------------------- ### Build and Run VTK ShadowsLightsDemo Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Visualization/ShadowsLightsDemo/index.html These shell commands provide instructions for downloading, extracting, configuring, building, and executing the VTK ShadowsLightsDemo example. It includes commands for both standard VTK installations and custom build paths. ```Shell cd ShadowsLightsDemo/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./ShadowsLightsDemo ``` -------------------------------- ### Build and Run VTK IterativeClosestPointsTransform Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Filtering/IterativeClosestPointsTransform/index.html These commands provide a step-by-step guide to download, extract, configure, build, and execute the `IterativeClosestPointsTransform` example. It covers scenarios where VTK is installed or needs a specific build path, and includes a note for Windows users regarding DLL resolution. ```Shell cd IterativeClosestPointsTransform/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./IterativeClosestPointsTransform ``` -------------------------------- ### Build and Run VTK SampleFunction Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/ImplicitFunctions/SampleFunction/index.html These instructions detail the steps to download, configure, build, and execute the VTK SampleFunction example. It covers scenarios where VTK is installed globally or requires a specific build path, and provides a note for Windows users regarding DLL resolution. ```Shell cd SampleFunction/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./SampleFunction ``` -------------------------------- ### Build and Run VTK ClosestNPoints Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/DataStructures/ClosestNPoints/index.html These instructions guide users through downloading, configuring, building, and running the `ClosestNPoints` example. It covers scenarios where VTK is already installed or needs to be located via `VTK_DIR`. Specific advice for Windows users regarding DLLs is also provided. ```Shell cd ClosestNPoints/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: ./ClosestNPoints ``` -------------------------------- ### Build and Run VTK FillWindow Example Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Images/FillWindow/index.html These shell commands provide a step-by-step guide to download, extract, configure, build, and execute the FillWindow project. Instructions cover standard VTK installations, specifying custom VTK build paths, and include a crucial note for Windows users regarding DLL resolution. ```Shell cd FillWindow/build ``` ```Shell cmake .. ``` ```Shell cmake -DVTK_DIR:PATH=/home/me/vtk_build .. ``` ```Shell make ``` ```Shell ./FillWindow ``` -------------------------------- ### Build and Run VTK FunctionParser Example (Shell) Source: https://github.com/kitware/vtk-examples/blob/gh-pages/site/Cxx/Utilities/FunctionParser/index.html These shell commands provide step-by-step instructions for downloading, extracting, building, and executing the `FunctionParser` example. It covers scenarios where VTK is either installed or requires a specific build path, and concludes with a note for Windows users regarding DLL resolution. ```Shell cd FunctionParser/build cmake .. cmake -DVTK_DIR:PATH=/home/me/vtk_build .. make ./FunctionParser ```