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)- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataGetPoint (content was: "This example demonstrates how to obtain the coordinates of a point in a vtkPolyData object. * Suggested by Sara Rolfe ==PolyDataGetPoint.cxx== <source lang="cpp"> #include <vtkSphereSource.h> #include <vtkSmartPointer.h> #include <vtkPolyData.h> int main(int, char*[]) { // Create a sphere vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New(); sphereSource->Update(); vtkPolyData* polydata = sphereSource->GetOutput(); // Write...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataIsoLines (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_PolyData_TestPolyDataIsoLines.png</div> ==PolyDataIsoLines.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkCellArray.h> #include <vtkFloatArray.h> #include <vtkPointData.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkXMLPolyDataReader.h> #include <vtkXMLPolyDataWriter.h> #include <vtkCamera...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataPointNormals (content was: "#REDIRECT [https://lorensen.github.io/VTKExamples/site/Cxx/PolyData/PolyDataPointNormals/ PolyDataPointNormals]")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataPointSampler (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/PolyData/PolyDataPointSampler PolyDataPointSampler] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataToImageData (content was: "* Contributed by: Lars Friedrich == Brief Description == This example generates a sphere (prerequisite: closed surface of type vtkPolyData) and converts it into volume representation (vtkImageData) where the foreground voxels are 255 (inside) and the background voxels are 0 (outside). Internally vtkPolyDataToImageStencil is utilized. The resultant image is saved to disk in metaimage file format (SphereVolume.mhd). Image:SphereAndImageDataOverlay3D.png ==PolyDataToImageD...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataToUnstructuredGrid (content was: "There is not a filter whose sole purpose is converting a vtkPolyData to a vtkUnstructuredGrid. However, the append filter can accept any type of input, and produces a vtkUnstructuredGrid, so we can use it for this purpose. ==PolyDataToUnstructuredGrid.cxx== <source lang="cpp"> #include <vtkAppendFilter.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include...", and the only contributor was "Daviddoria" (talk))
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolygonalSurfaceContourLineInterpolator (content was: "<div class="floatright">300px</div> ==PolygonalSurfaceContourLineInterpolator.cxx== <source lang="cpp" highlight=86-106> #include <vtkVersion.h> #include "vtkSmartPointer.h" #include "vtkActor.h" #include "vtkCamera.h" #include "vtkCellArray.h" #include "vtkImageDataGeometryFilter.h" #include "vtkPoints.h" #include "vtkPolyData.h" #include "vtkPolyDataCollection.h" #include "vtkPolyDataMapper.h" #includ...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolygonalSurfacePointPlacer (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestPointPlacer.png</div> This example demonstrates how to draw curves on a surface. ==PolygonalSurfacePointPlacer.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkCommand.h> #include <vtkProperty.h> #include <vtkContourWidget.h> #include <vtkSphereSource.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInterac...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/ProcrustesAlignmentFilter (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestProcrustesAlignmentFilter.png</div> This example aligns three objects (deformed spheres) using the Procrustes algorithm. The original shapes are shown on the left. The alignment using a rigid transform is shown in the middle, and the alignment using a similarity transform is shown on the right. ==ProcrustesAlignmentFilter.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/QuantizePolyDataPoints (content was: "<div class="floatright">300px</div> This example demonstrates how to "snap" points onto a discrete grid. This example rounds the coordinates of each point the the nearest .1 ==QuantizePolyDataPoints.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkQuantizePolyDataPoints.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkPointSource.h> #include <vtkPolyDataMapper.h> #include <...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/Reflection (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestReflectionFilter.png</div> '''Note:''' This example uses {{class|vtkReflectionFilter}}, which outputs a {{class|vtkDataObject}}. For an example that returns a {{class|vtkPolyData}}, see ''[[../../Filtering/TransformPolyData|TransformPolyData]]''. ==Reflection.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkDataSetMapper.h> #include <vtkProperty.h> #include <vtkReflectionFilter.h> #include <...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/RemoveVertices (content was: "==RemoveVertices.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkXMLPolyDataReader.h> #include <vtkXMLPolyDataWriter.h> #include <vtkSmartPointer.h> #include <vtkCellData.h> #include <vtkCellArray.h> #include <vtkPolyData.h> int main ( int argc, char *argv[] ) { if (argc < 2) { std::cout << "Usage: " << argv[0] << " filename.vtp" << std::endl; return EXIT_FAILURE; } std::string filename = argv[1]; // Read all the data from the file vtkSm...")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/StaticImage (content was: "<div class="floatright">300px</div> This example displays an image in a non-interact-able window. ==StaticImage.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 <<...")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Math/NormalizeVector (content was: "==NormalizeVector.cxx== <source lang="cpp"> #include "vtkMath.h" int main(int, char*[]) { double a[3] = {100.0, 2.0, 1.0}; std::cout << a[0] << " " << a[1] << " " << a[2] << std::endl; vtkMath::Normalize(a); std::cout << a[0] << " " << a[1] << " " << a[2] << std::endl; return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Math/PerpendicularVector (content was: "==PerpendicularVector.cxx== This example finds a vector perpendicular to the x axis (1,0,0). Since theta is specified as 0, the negative z axis (0, 0, -1) is returned. <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMath.h> int main(int, char *[]) { double x[3] = {1,0,0}; double y[3]; vtkMath::Perpendiculars(x, y, NULL, 0); std::cout << "y: " << y[0] << " " << y[1] << " " << y[2] << std::endl; return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SU...")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Math/VectorDot (content was: "Note that the filter maps the values to a scalar range. In the example, the values of the dot products are 1, .707, 0 The filter outputs 1, .414, -1 because the default scalar range that the filter maps the values to is [-1,1]. ==VectorDot.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkFloatArray.h> #include <vtkPointData.h> #include <vtkVectorDot.h> // For compatibility with new...")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Math/VectorNorm (content was: "==VectorNorm.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkFloatArray.h> #include <vtkPointData.h> #include <vtkVectorNorm.h> // For compatibility with new VTK generic data arrays #ifdef vtkGenericDataArray_h #define InsertNextTupleValue InsertNextTypedTuple #endif int main(int, char *[]) { vtkSmartPointer<vtkPoints> points = vtkSmartPointer<vtkPoints>::New(); points->Insert...")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Matlab/MatlabEngineFilter (content was: "This example currently does nothing. ==MatlabEngineFilter.cxx== <source lang="cpp"> //need to set VTK_USE_MATLAB_MEX ON #include <vtkSmartPointer.h> #include <vtkMatlabEngineFilter.h> int main(int argc, char *argv[]) { vtkSmartPointer<vtkMatlabEngineFilter> matlabFilter = vtkSmartPointer<vtkMatlabEngineFilter>::New(); return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/GenerateCubesFromLabels (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/GenerateCubesFromLabels GenerateCubesFromLabels] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/GenerateModelsFromLabels (content was: "Link title= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/GenerateModelsFromLabels GenerateModelsFromLabels] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/MedicalDemo1 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/MedicalDemo1 MedicalDemo1] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/MedicalDemo2 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/MedicalDemo2 MedicalDemo2] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/MedicalDemo3 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/MedicalDemo3 MedicalDemo3] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/MedicalDemo4 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/MedicalDemo4 MedicalDemo4] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/TissueLens (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/TissueLens TissueLens] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/AddCell (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/AddCell AddCell] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/BoundaryEdges (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/BoundaryEdges BoundaryEdges] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/CapClip (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/CapClip CapClip] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/CellEdges (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/CellEdges CellEdges] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ClipClosedSurface (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/ClipClosedSurface ClipClosedSurface] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ClipDataSetWithPolyData (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/ClipDataSetWithPolyData ClipDataSetWithPolyData] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ClipFrustum (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/ClipFrustum ClipFrustum] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ColoredElevationMap (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/ColoredElevationMap ColoredElevationMap] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/Decimation (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/Decimation Decimation] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/DeformPointSet (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/DeformPointSet DeformPointSet] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ElevationFilter (content was: "<div class="floatright">File:VTK_Examples_Baseline_Meshes_TestElevationFilter.png</div> ==ElevationFilter.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkPointData.h> #include <vtkSmartPointer.h> #include <vtkDelaunay2D.h> #include <vtkXMLPolyDataWriter.h> #include <vtkLookupTable.h> #include <vtkFloatArray.h> #include <vtkElevationFilter.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRende...")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ExtractEdges (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/ExtractEdges ExtractEdges] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/FillHoles (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/FillHoles FillHoles] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/FitToHeightMap (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/FitToHeightMap FitToHeightMap] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/IdentifyHoles (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/IdentifyHoles IdentifyHoles] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/InterpolateFieldDataDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/InterpolateFieldDataDemo InterpolateFieldDataDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' = '", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/RadiusOutlierRemoval (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Points_TestRadiusOutlierRemoval.png</div> in this example, outliers are red. Yellow points satisfy the radius and neighbor restrictions. '''NOTE: The classes used in this example require vtk 7.1 or later.''' ==RadiusOutlierRemoval.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkRadiusOutlierRemova...", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/SignedDistance (content was: "<div class="floatright">File:VTK_Examples_Baseline_Points_TestSignedDistance.png</div> Contrast this with the UnsignedDistance example. The image was created using the [https://github.com/lorensen/VTKWikiExamples/blob/master/Testing/Data/Armadillo.ply?raw=true Armadillo dataset] '''NOTE: The classes used in this example require vtk 7.1 or later.''' ==SignedDistance.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #includ...")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/UnsignedDistance (content was: "<div class="floatright">File:VTK_Examples_Baseline_Points_TestUnsignedDistance.png</div> Contrast this with the SignedDistance example. The image was created using the [https://github.com/lorensen/VTKWikiExamples/blob/master/Testing/Data/Armadillo.ply?raw=true Armadillo dataset] '''NOTE: The classes used in this example require vtk 7.1 or later.''' ==UnsignedDistance.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #includ...")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/AlignFrames (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/PolyData/AlignFrames AlignFrames] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/AttachAttributes (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/PolyData/AttachAttributes AttachAttributes] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/BooleanOperationPolyDataFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/PolyData/BooleanOperationPolyDataFilter BooleanOperationPolyDataFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/Casting (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/PolyData/Casting Casting] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/CellCenters (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/PolyData/CellCenters CellCenters] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/CellEdgeNeighbors (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/PolyData/CellEdgeNeighbors CellEdgeNeighbors] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")