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:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/vtkTest1 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/vtkTest vtkTest] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/vtkTestAlgorithmFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/vtkTest1 vtkTest1] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/vtkTestAlgorithmSource (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/vtkTestAlgorithmFilter vtkTestAlgorithmFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/vtkTestFilterProgressFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/vtkTestAlgorithmSource vtkTestAlgorithmSource] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/vtkTestFilterSelfProgressFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/vtkTestFilterProgressFilter vtkTestFilterProgressFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/vtkTestGraphAlgorithmFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/vtkTestFilterSelfProgressFilter vtkTestFilterSelfProgressFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/vtkTestMultipleInputPortsFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/vtkTestGraphAlgorithmSource vtkTestGraphAlgorithmSource] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/vtkTestPolyDataFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/vtkTestMultipleInputPortsFilter vtkTestMultipleInputPortsFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/MarkKeypoints (content was: "Thanks to Dean Inglis. <div class="floatcenter">File:VTK_Examples_Baseline_Images_TestMarkKeypoints.png</div> ==MarkKeypoints.cxx== <source lang="cpp"> #include <vtkAbstractPicker.h> #include <vtkActor.h> #include <vtkActor2D.h> #include <vtkCoordinate.h> #include <vtkFollower.h> #include <vtkImageMapper3D.h> #include <vtkImageActor.h> #include <vtkImageCanvasSource2D.h> #include <vtkCoordinate.h> #include <vtkTransform.h> #include <vtkTransformPolyDataFilter.h> #include <...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/InteractWithImage (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Images_TestInteractWithImage.png</div> This example shows how to display an image and zoom/pan/adjust brightness interactively. A picture of the [http://www.vtk.org/Wiki/Image:Bunny.jpg bunny] is provided for the demo. ==InteractWithImage.cxx== <source lang="cpp"> #include <vtkJPEGReader.h> #include <vtkImageMapper3D.h> #include <vtkImageActor.h> // Note: this is a 3D actor (c.f. vtkImageMapper which is 2D) #include <vt...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/NegativeIndices (content was: "==NegativeIndices.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkImageData.h> int main(int, char *[]) { // Create an image data vtkSmartPointer<vtkImageData> imageData = vtkSmartPointer<vtkImageData>::New(); // Specify the size of the image data imageData->SetExtent(-5, 5, -5, 5, -5, 5); // Fill every entry of the image data with "2.0" int* extent = imageData->GetExtent(); #if VTK_MAJOR_VERSION <= 5 imageD...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/Interpolation (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Images_TestInterpolation.png</div> ==Interpolation.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkImageData.h> #include <vtkSmartPointer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageMapper.h> #include <vtkImageResliceMapper.h> #include <vtkImageSlice.h> #include <vtkImageProperty.h> static void CreateC...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/PickPixel (content was: "<div class="floatright">300px</div> This example demonstrates how to continuously retrieve pixel values using the mouse. * Contributed by: Dean Inglis ==PickPixel.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkAssemblyPath.h> #include <vtkCell.h> #include <vtkCommand.h> #include <vtkCornerAnnotation.h> #include <vtkDataArray.h> #include <vtkImageActor.h> #include <vtkImageData.h> #include <vtkImageViewer2...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageVariance3D (content was: "<div class="floatright">400px</div> ==ImageVariance3D.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkImageCanvasSource2D.h> #include <vtkImageVariance3D.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageActor.h> #include <vtkImageEllipsoidSou...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageValueRange (content was: "==ImageValueRange.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkDoubleArray.h> #include <vtkImageData.h> #include <vtkPointData.h> int main(int, char *[]) { // Create an image data vtkSmartPointer<vtkImageData> imageData = vtkSmartPointer<vtkImageData>::New(); // Specify the size of the image data imageData->SetDimensions(5,1,1); #if VTK_MAJOR_VERSION <= 5 imageData->SetNumberOfScalarComponents(1); imageData->SetScala...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageToStructuredPoints (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestImageToStructuredPoints.png</div> ==ImageToStructuredPoints.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkStructuredPoints.h> #include <vtkImageCanvasSource2D.h> #include <vtkImageToStructuredPoints.h> #include <vtkDataSetMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> int main(int, char *...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageToPolyDataFilter (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestImageToPolyDataFilter.png</div> ==ImageToPolyDataFilter.cxx== <source lang="cpp"> #include <vtkActor.h> #include <vtkLookupTable.h> #include <vtkPolyDataMapper.h> #include <vtkProperty.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkSmartPointer.h> #include <vtkImageToPolyDataFilter.h> #include <vtkImageQuantizeRGBToIndex.h> #include <vtkCamera.h> #incl...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageText (content was: "This example demonstrates how to draw text onto an image ({{class|vtkImageData}}). It uses {{class|vtkImageBlend}} to blend the text and the image. For another example using vtkImageBlend, see [[../CombineImages]]. See also [[../../Visualization/DrawText]] for an example of drawing text, also in 2D, but into the render window rather than into a vtkImageData object. ==ImageText.cxx== <source lang="cpp"> #include <vtkImageBlend.h> #include <vtkImageData.h> #include <vtkPointDat...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageThreshold (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Images_TestImageThreshold.png</div> The image on the left is the input image and the image on the right is the thresholded version. ==ImageThreshold.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageThreshold.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageMapper3D.h> #incl...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageMapToColors (content was: "<div class="floatright">400px</div> ==ImageMapToColors.cxx== <source lang="cpp"> // // Displays a "grayscale" image as a full color image via the // vtkImageMapToColors filter, which uses a lookup table to // map scalar values to colors // #include <vtkImageActor.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkImageMapToColors.h> #include <vtkImageProperty.h> #include <vtkInteractorStyleImage...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageMandelbrotSource (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestImageMandelbrotSource.png</div> ==ImageMandelbrotSource.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageMandelbrotSource.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageActor.h> #include <vtkImageCast.h> #include <vtkImageMapper3D.h> int main(int, char *[]) { // Create an image vtkS...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageMagnitude (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestImageMagnitude.png</div> There are two ways to convert images to greyscale: * {{class|vtkImageLuminance}} uses the luminance equation for properly weighting the R, G, and B components; * {{class|vtkImageMagnitude}} does a simple sum-of-squares computation of the components (i.e. the Euclidean norm -- not the wikipedia:Root...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageMagnify (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Images_TestImageMagnify.png</div> vtkImageMagnify increases the dimensions of an image by integral magnification factors. It also adjusts the spacing of the pixels so that the magnified image covers the same region as the original image. To stretch the image, the pixel spacing needs to be adjusted. This example uses vtkImageChangeInformation to modify the magnified image's spacing. The result is an image that has increased...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageLuminance (content was: "<div class="floatright">400px</div> There are two ways to convert images to greyscale: * {{class|vtkImageLuminance}} uses the luminance equation for properly weighting the R, G, and B components; * {{class|vtkImageMagnitude}} does a simple sum-of-squares computation of the components (i.e. the Euclidean norm -- not the wikipedia...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageLaplacian (content was: "<div class="floatright">400px</div> ==ImageLaplacian.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkImageMandelbrotSource.h> #include <vtkImageLaplacian.h> #include <vtkImageActor.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkImageCast.h> int...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageImport (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Images_TestImageImport.png</div> ==ImageImport.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkImageData.h> #include <vtkSmartPointer.h> #include <vtkImageImport.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkImageActor.h> #include <vtkInteractorStyleImage.h> #include <vtkXMLImageDataWriter.h> int main(int, char *[]) { // Create a c-style image...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageIslandRemoval2D (content was: "This example creates a small white square and a big white square. We want the ImageIslandRemoval2D to turn the small white square black and leave the big white square alone. <div class="floatcenter">File:VTK_Examples_Baseline_Images_TestImageIslandRemoval2D.png</div> ==ImageIslandRemoval2D.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkImageCanvasSource2D.h> #include <vtkImageIslandRemoval2D.h> #i...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageIdealHighPass (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Images_TestImageIdealHighPass.png</div> ==ImageIdealHighPass.cxx== <source lang="cpp"> #include <vtkImageExtractComponents.h> #include <vtkImageData.h> #include <vtkImageFFT.h> #include <vtkImageMandelbrotSource.h> #include <vtkImageIdealHighPass.h> #include <vtkImageShiftScale.h> #include <vtkInteractorStyleImage.h> #include <vtkImageSlice.h> #include <vtkImageSliceMapper.h> #include <vtkImageEllipsoidSource.h> #include <...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageHybridMedian2D (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestImageHybridMedian2D.png</div> This example reads in an image and performs median filtering on it. The input and output are displayed. ==ImageHybridMedian2D.cxx== <source lang="cpp"> #include <vtkImageActor.h> #include <vtkImageCast.h> #include <vtkImageMapper3D.h> #include <vtkInteractorStyleImage.h> #include <vtkImageAccumulate.h> #include <vtkImageData.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageGridSource (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestImageGridSource.png</div> ==ImageGridSource.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageGridSource.h> #include <vtkImageMapper3D.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageActor.h> #include <vtkImageCast.h> int main(int, char *[]) { // Create an image vtkSmartPointer<vtkIm...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageGradientMagnitude (content was: "<div class="floatright">400px</div> ==ImageGradientMagnitude.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkImageGradientMagnitude.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkJPEGReader.h> #include <vtkImageActor.h> #include <vtkImage...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageGaussianSmooth (content was: "<div class="floatright">400px</div> ==ImageGaussianSmooth.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkImageGaussianSmooth.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageActor.h> #include <vtkImageEllipsoidSource.h> #include <vtkImag...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageFFT (content was: "<div class="floatright">400px</div> ==ImageFFT.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkImageCanvasSource2D.h> #include <vtkImageFFT.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkJPEGReader.h> #include <vtkImageActor.h> #include <vtkImageEllips...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageExport (content was: "==ImageExport.cxx== <source lang="cpp"> #include <vtkImageData.h> #include <vtkImageExport.h> #include <vtkSmartPointer.h> #include <vtkVersion.h> int main(int, char *[]) { // Create an image data vtkSmartPointer<vtkImageData> imageData = vtkSmartPointer<vtkImageData>::New(); // Specify the size of the image data int dims[3] = {2,3,1}; imageData->SetDimensions(dims[0], dims[1], dims[2]); #if VTK_MAJOR_VERSION <= 5 imageData->SetNumberOfScalarComponents(1...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageEllipsoidSource (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestImageEllipsoidSource.png</div> ==ImageEllipsoidSource.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkImageEllipsoidSource.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageActor.h> #include <vtkImageCast.h> int main(int, char *[]) { //...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageDivergence (content was: "<div class="floatright">400px</div> ==ImageDivergence.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageCast.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkImageCanvasSource2D.h> #include <vtkImageDivergence.h> #include <vtkImageGradient.h> #include <vtkImageCanvasSource2D.h> #include <vtkImageCorrelation.h> #include <vtkInteractorStyleImage.h> #include <vtkImageActor.h...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageDilateErode3D (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestImageDilateErode3D.png</div> This example reads in a binary image and dilates one value and erodes another (morphological operations). ==ImageDilateErode3D.cxx== <source lang="cpp"> #include <vtkImageActor.h> #include <vtkImageCast.h> #include <vtkInteractorStyleImage.h> #include <vtkImageAccumulate.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #...")
- 02:54, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageDifference (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestImageDifference.png</div> This example makes a large square and a smaller square and subtracts them, leaving the outline of a square. ==ImageDifference.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkImageCanvasSource2D.h> #include <vtkImageDifference.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowIntera...")
- 02:54, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageCorrelation (content was: "<div class="floatright">400px</div> ==ImageCorrelation.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageShiftScale.h> #include <vtkImageCast.h> #include <vtkImageMapper3D.h> #include <vtkMath.h> #include <vtkImageData.h> #include <vtkPointData.h> #include <vtkDataArray.h> #include <vtkImageCanvasSource2D.h> #include <vtkImageCorrelation.h> #include <vtkInteractorStyleImage.h> #include <vtkIma...")
- 02:54, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageConvolve (content was: "<div class="floatright">400px</div> ==ImageConvolve.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include <vtkImageConvolve.h> #include <vtkImageMandelbrotSource.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageActor.h> #include <vtkImageCast.h> int mai...")
- 02:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/WishList/Images/HistogramXYPlot (content was: "<div class="floatright">300px</div> This example works but there is an issue with vtkImageAccumulate. It appears the maximum frequency of a histogram generated by vtkImageAccumulate, when that frequency corresponds to the value of 0, cannot be disabled by setting ignore zero to true! See lines 245 and 218 in vtkImageAccumulate.cxx ==HistogramXYPlot.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkS...")
- 02:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/WishList/Images/HistogramBarChart (content was: "<div class="floatright">400px</div> This example works, but the testing images produced usually vary slightly from the baseline. ==HistogramBarChart.cxx== <source lang="cpp"> #include <vtkActor.h> #include <vtkBarChartActor.h> #include <vtkFieldData.h> #include <vtkImageAccumulate.h> #include <vtkImageData.h> #include <vtkImageExtractComponents.h> #include <vtkIntArray.h> #include <vtkJPEGReader.h> #include <vtkLe...")
- 02:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/WishList/CompositeDataGeometryFilter (content was: "==CompositeDataGeometryFilter.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkLSDynaReader.h> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkUnstructuredGrid.h> #include <vtkCompositeDataGeometryFilter.h> #include <vtkCompositeDataPipeline.h> int main(int argc, char *argv[]) { // Parse command line arguments if(arg...")
- 02:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Widgets/TexturedButtonWidget (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Widgets/TexturedButtonWidget TexturedButtonWidget] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Widgets/TextWidget (content was: "<div class="floatright">File:VTK_Examples_Baseline_Widgets_TestTextWidget.png</div> :''See also: [[../../Visualization/DrawText]]'' ==TextWidget.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkTextWidget.h> #include <vtkTextActor.h> #include <vtkSphereSource.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkTextActor.h> #include <vtkTextProperty.h> #include <vtkTextRepresentation.h> #include <vtkCoordinate.h> #include <vtkRenderer.h>...")
- 02:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Widgets/SplineWidget (content was: "<div class="floatright">File:VTK_Examples_Baseline_Widgets_TestSplineWidget.png</div> ==SplineWidget.cxx== <source lang="cpp"> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkSmartPointer.h> #include <vtkSplineWidget2.h> int main(int, char *[]) { // A renderer and render window vtkSmartPointer<vtkRenderer> renderer = vtkSmartPointer<vtkRenderer>::New(); vtkSmartPointer<vtkRenderWindow> renderWindow =...")
- 02:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Widgets/SphereWidgetEvents (content was: "<div class="floatright">File:VTK_Examples_Baseline_Widgets_TestSphereWidgetEvents.png</div> This example shows how to subclass a widget so that events can be further customized. Contributed by: Alex Malyushytskyy. ==SphereWidgetEvents.cxx== <source lang="cpp"> #include <vtkCallbackCommand.h> #include <vtkCommand.h> #include <vtkObjectFactory.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkSmartPointer.h> #includ...")
- 02:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Widgets/SphereWidget2 (content was: "<div class="floatright">File:VTK_Examples_Baseline_Widgets_TestSphereWidget2.png</div> The spherical coordinates of the widget's handle match the coordinates that it displays in the window. The world coordinates of the handle are also shown. ==SphereWidget2.cxx== <source lang="cpp"> #include <vtkCommand.h> #include <vtkMath.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkSmartPointer.h> #include <vtkSphere.h> #in...")
- 02:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Widgets/SphereWidget (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Widgets/SphereWidget SphereWidget] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Widgets/Slider2D (content was: "<div class="floatright">File:VTK_Examples_Baseline_Widgets_TestSlider2D.png</div> == 2D Slider == This example demonstrates how to use a slider that is drawn in window coordinates - so if you move the scene the slider is not affected. Contrast this with the 3D slider widget that remains at a fixed location in the world coordinates. If the callback is connected to InteractionEvent, the scene will update immediately. This is not ideal if t...")