All public logs
From KitwarePublic
Jump to navigationJump to search
Combined display of all available logs of KitwarePublic. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/ParametricKuenDemo (content was: "<div class="floatright">600px</div> ==ParametricKuenDemo.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkParametricKuen.h> #include <vtkParametricFunctionSource.h> #include <vtkCamera.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkActor2D.h> #include <vtkPr...", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Line (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestLine.png</div> ==Line.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkLineSource.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkProperty.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> int main(int, char *[]) { // Create two points, P0 and P1 double p0[3] = {1.0, 0.0, 0.0}; double p...")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/OrientedCylinder (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestOrientedCylinder.png</div> This example illustrates how to create and display a cylinder that passes through two points. It demonstrates two different ways to apply the transform: # Use [http://www.vtk.org/doc/nightly/html/classvtkTransformPolyDataFilter.html vtkTransformPolyDataFilter] to create a...", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/OrientedArrow (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestOrientedArrow.png</div> This example illustrates how to create and display an arrow that passes through two points. It demonstrates two different ways to apply the transform: # Use [http://www.vtk.org/doc/nightly/html/classvtkTransformPolyDataFilter.html vtkTransformPolyDataFilter] to create a new transformed polydata. This method is useful if the transformed polydata is needed later in the pipeline, e...")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/LongLine (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestLongLine.png</div> Connect several points with a line. See also VTK/Examples/Cxx/GeometricObjects/ColoredLines ==LongLine.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkCellArray.h> #include <vtkCellData.h> #include <vtkDoubleArray.h> #include <vtkPoints.h> #include <vtkLine.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h>...")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Hexahedron (content was: "<div class="floatright">300px</div> This example creates eight points and creates a hexahedron from the points. ==Hexahedron.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkCellArray.h> #include <vtkPoints.h> #include <vtkHexahedron.h> #include <vtkUnstructuredGrid.h> #include <vtkSmartPointer.h> #include <vtkDataSetMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkR...")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Frustum (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestFrustum.png</div> This example gets the frustum from a camera and displays it on the screen. ==Frustum.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkFrustumSource.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include <vtkCamera.h> #include <vtkPlanes.h> #include <vtkMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWind...")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/GeometricObjectsDemo (content was: "<div class="floatright">400px</div> ==GeometricObjectsDemo.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkTextMapper.h> #include <vtkActor.h> #include <vtkActor2D.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkArrowSource.h> #include <vtkConeSource.h> #include <vtkCubeSource.h> #include <v...")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Dodecahedron (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_GeometricObjects_TestDodecahedron.png</div> ==Dodecahedron.cxx== <source lang="cpp"> #include "vtkSmartPointer.h" #include "vtkVersion.h" #include "vtkPolyhedron.h" #include "vtkPolyData.h" #include "vtkPolyDataMapper.h" #include "vtkCamera.h" #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h...", and the only contributor was "Lorensen" (talk))
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Disk (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestDisk.png</div> ==Disk.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkDiskSource.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> int main(int, char *[]) { vtkSmartPointer<vtkDiskSource> diskSource = vtkSmartPointer<vtkDiskSource>::New(); // Create a mapper and actor. v...")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Cylinder (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestCylinder.png</div> This example displays a cylinder on the screen. ==Cylinder.cxx== <source lang="cpp"> #include <vtkCylinderSource.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> int main(int, char *argv[]) { // Create a sphere vtkSmartPointer...")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Cube (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestCube.png</div> ==Cube.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkActor.h> #include <vtkCubeSource.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> int main(int, char *[]) { // Create a cube. vtkSmartPointer<vtkCubeSource> cubeSource = vtkSmartPointer<vtkCubeSource>::...")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Cone (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestCone.png</div> ==Cone.cxx== <source lang="cpp"> #include <vtkConeSource.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> int main(int, char *[]) { //Create a cone vtkSmartPointer<vtkConeSource> coneSource = vtkSmartPointer<vtkConeSource>::New(...")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/ColoredLines (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestColoredLines.png</div> Displays two lines, each with a different color. See also VTK/Examples/Cxx/GeometricObjects/LongLine. ==ColoredLines.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkCellArray.h> #include <vtkCellData.h> #include <vtkUnsignedCharArray.h> #include <vtkPoints.h> #include <vtkLine.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper....")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Circle (content was: "<div class="floatcenter">300px</div> A circle is simply the limiting case of a regular polygon. We use vtkRegularPolygonSource with a large number of Sides to approximate a circle. ==Circle.cxx== <source lang="cpp"> // Classes specific to this example #include <vtkRegularPolygonSource.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper.h> // Generic VTK pipeline elements #include <vtkActor.h> #include <vtkRende...")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Cell3DDemonstration (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_Cell3DDemonstration.png</div> ==Description== This is a demonstration of how to construct and display geometric objects using the classes derived from vtkCell3D. For each object we specify the points and cell Ids. From this we create an unstructured grid. In some cases a vtkCellArray is used and the result is added to the unstructured grid, see: '''''MakePolyhedron()''''' and '''''MakeTetrahedron()'''''....")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Axes (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestAxes.png</div> This example shows how to position an AxesActor in 3D. Notice that position and orientation of the AxesActor is done with a user transform. :''See also: VTK/Examples/Cxx/Visualization/DisplayCoordinateAxes. ==Axes.cxx== <source lang="cpp"> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h>...")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GLUT (content was: "<div class="floatright">File:Vtkglut.png</div> This page illustrates how to use the new method '''vtkRenderWindow::InitializeFromCurrentContext()''' to associate a vtkRenderWindow instance to an existing window and activated OpenGL context. By using this method, VTK do not create the rendering container nor the OpenGL context but inherit from the one created some...", and the only contributor was "JPouderoux" (talk))
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/WarpTo (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Filtering_TestWarpTo.png</div> ==WarpTo.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkLineSource.h> #include <vtkTubeFilter.h> #include <vtkDataSetMapper.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkWarpTo.h> int main(int, char*[]) { // Create the RenderWindow, Renderer and both Actors vtkSmartPointer<vtkRenderer> renderer = vtkS...")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/VectorFieldNonZeroExtraction (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/VectorFieldNonZeroExtraction VectorFieldNonZeroExtraction] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/TriangulateTerrainMap (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/TriangulateTerrainMap TriangulateTerrainMap] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/TransformPolyData (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/TransformPolyData TransformPolyData] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/SurfaceFromUnorganizedPointsWithPostProc (content was: "<div class="floatright">File:VTK_Examples_Baseline_Filters_TestSurfaceFromUnorganizedPointsWithPostProc.png</div> This example is an extension to the example previously posted at: Create a surface from Unorganized Points The objective is again to use vtkSurfaceReconstructionFilter to construct a surface from a set of points. However, the direct output of the vtkSurfaceReconstructionFilter does not match with the s...")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/SurfaceFromUnorganizedPoints (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/SurfaceFromUnorganizedPoints SurfaceFromUnorganizedPoints] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/ProgrammableSource (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/ProgrammableSource ProgrammableSource] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/ProgrammableFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/ProgrammableFilter ProgrammableFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/PerlinNoise (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/PerlinNoise PerlinNoise] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/LandmarkTransform (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/LandmarkTransform LandmarkTransform] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:15, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/IterativeClosestPointsTransform (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/IterativeClosestPointsTransform IterativeClosestPointsTransform] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:14, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/ImplicitBooleanDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/ImplicitBooleanDemo ImplicitBooleanDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:14, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/ImplicitBoolean (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/ImplicitBoolean ImplicitBoolean] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:14, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/Glyph3D (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/Glyph3D Glyph3D] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:14, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/Glyph2D (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/Glyph2D Glyph2D] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:14, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/GenericClip (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/GenericClip GenericClip] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/VertexSize (content was: "<div class="floatright">File:VTK_Examples_Baseline_Graphs_TestVertexSize.png</div> Change the size of all vertices. ==VertexSize.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkRenderedGraphRepresentation.h> #include <vtkObjectFactory.h> #include <vtkFloatArray.h> #include <vtkMutableUndirectedGraph.h> #include <vtkGraphWriter.h> #include <vtkGraphLayoutView.h> #include <vtkRenderWindowInteractor.h> #include <vtkDataSetAttributes.h> #include <vtkGraphTo...")
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/VisualizeDirectedGraph (content was: "<div class="floatright">File:VTK_Examples_Baseline_Graphs_TestVisualizeDirectedGraph.png</div> ==VisualizeDirectedGraph.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkActor.h> #include <vtkGlyph3D.h> #include <vtkGlyphSource2D.h> #include <vtkGraphLayout.h> #include <vtkGraphLayoutView.h> #include <vtkGraphToPolyData.h> #include <vtkMutableDirectedGraph.h> #include <vtkPolyDataMapper.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #i...")
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/VisualizeGraph (content was: "<div class="floatright">File:VTK_Examples_Baseline_Graphs_TestVisualizeGraph.png</div> This example shows how to construct a graph and visualize it. You can select edges and vertices with the mouse. ==VisualizeGraph.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkGraphLayoutStrategy.h> #include <vtkGraphLayoutView.h> #include <vtkGraphWriter.h> #include <vtkMutableUndirectedGraph.h> #include <vtkRenderWindowInteractor.h> #include <vtkSimple2DLayoutStra...")
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/ConvertFile (content was: "This example demonstrates how to read a file and then write it to a different type of file. In this example, we read a vtp file and write a ply file, but simply by changing the reader/writer classes instantiated, different behavior can be achieved. ==ConvertFile.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyData.h> #include <vtkXMLPolyDataReader.h> #include <vtkPLYWriter.h> int main(int argc, char *argv[]) { if(argc < 3) { std::cerr << "Re...")
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/DEMReader (content was: "<div class="floatright">File:VTK_Examples_Baseline_IO_TestDEMReader.png</div> ==DEMReader.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageActor.h> #include <vtkImageMapToColors.h> #include <vtkLookupTable.h> #include <vtkDEMReader.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> int main(int argc, char* argv[])...")
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/DumpXMLFile (content was: "== Dump the Contents of VTK XML and Legacy files== This example reports the cell, cell data and point data contained within a VTK XML or legacy file. ==DumpXMLFile.cxx== <source lang="cpp"> // // DumpXMLFile - report on the contents of an XML or legacy vtk file // Usage: DumpXMLFile XMLFile1 XMLFile2 ... // where // XMLFile is a vtk XML file of type .vtu, .vtp, .vts, .vtr, // .vti, .vto // #include <vtkSmartPointer.h> #include <vtkXMLReader.h> #inclu...")
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/ExportDICOMtoVTI (content was: "This example hasn't been contributed yet. To achieve this, the following two examples can be combined: # VTK/Examples/Cxx/IO/ReadDICOM (or VTK/Examples/Cxx/IO/ReadDICOMSeries) # VTK/Examples/Cxx/IO/WriteVTI", and the only contributor was "Waldyrious" (talk))
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/FindAllArrayNames (content was: "This example shows how to find out the names of all of the data arrays stored in a vtkPolyData. ==FindAllArrayNames.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyData.h> #include <vtkPointData.h> #include <vtkCellData.h> #include <vtkXMLPolyDataReader.h> #include <vtkSphereSource.h> #include <vtkCubeSource.h> #include <vtkXMLPolyDataWriter.h> #include <vector> #include <string> void FindAllData(vtkPolyData* polydata); int main(int argc, char *ar...")
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/GenericDataObjectReader (content was: "==GenericDataObjectReader.cxx== <source lang="cpp"> #include <vtkGenericDataObjectReader.h> #include <vtkStructuredGrid.h> #include <vtkSmartPointer.h> #include <vtkPolyData.h> #include <string> int main ( int argc, char *argv[] ) { // Ensure a filename was specified if(argc != 2) { std::cerr << "Usage: " << argv[0] << " InputFilename" << endl; return EXIT_FAILURE; } // Get the filename from the command line std::string inputFilename = argv[1]; // G...")
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/ImageReader2Factory (content was: "<div class="floatright">File:VTK_Examples_Baseline_IO_TestImageReader2Factory.png</div> ==ImageReader2Factory.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageReader2Factory.h> #include <vtkImageReader2.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageActor.h> int main(int argc, char *argv[]) {...")
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/IndividualVRML (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_IO_TestIndividualVRML.png</div> This example shows how to obtain each object of a scene and get it's initial transformation. The selected actor is represented in wireframe. To run this example, IndividualVRML filename actorname The .wrl file must contain a Shape with a DEF name. ==IndividualVRML.cxx== <source lang="cpp"> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #includ...")
- 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/JPEGReader (content was: "<div class="floatright">File:VTK_Examples_Baseline_IO_TestJPEGReader.png</div> This example shows how to read a JPG image file. ==JPEGReader.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageViewer2.h> #include <vtkJPEGReader.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> int main(int argc, char* argv[]) { //Verify input arguments if ( argc != 2 ) { std::cout << "Usage: " << argv[0]...")
- 02:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/JPEGWriter (content was: "==JPEGWriter.cxx== <source lang="cpp" highlight="3,7,25-29"> #include <vtkSmartPointer.h> #include <vtkImageCanvasSource2D.h> #include <vtkJPEGWriter.h> int main(int vtkNotUsed(argc), char* vtkNotUsed(argv)[]) { std::string outputFilename = "output.jpg"; // Create a 100x100 image to save into the jpeg file int extent[6] = { 0, 99, 0, 99, 0, 0 }; vtkSmartPointer<vtkImageCanvasSource2D> imageSource = vtkSmartPointer<vtkImageCanvasSource2D>::New(); imageSource->Set...")
- 02:08, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/vtkRungeKutta4 (content was: "#REDIRECT VTK/Examples/Cxx/Broken/RungeKutta4", and the only contributor was "Daviddoria" (talk))
- 02:08, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/vtkSelectionSource (content was: "#REDIRECT VTK/Examples/Broken/vtkSelectionSource", and the only contributor was "Lorensen" (talk))
- 02:08, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/vtkSphere (content was: "#REDIRECT VTK/Examples/ImplicitFunctions/vtkSphere", and the only contributor was "Lorensen" (talk))