- Jun 05, 2019
-
-
vtkWordCloud is an Image Source that creates a word cloud. Word Clouds, AKA Tag Clouds, are a text visualization technique that displays individual works with properties that depend on the frequency of a word in a document. Numerous options are available, including the color of the words, size of the words, the orientation of the words, font files, and mask files. Word Clouds, AKA Tag Clouds, are a text visualization technique that displays individual works with properties that depend on the frequency of a word in a document. vtkWordCloud varies the font size base on word frequency. Word Clouds are useful for quickly perceiving the most prominent terms in a document. Also, Word Clouds can identify trends and patterns that would otherwise be unclear or difficult to see in a tabular format. Frequently used keywords stand out better in a Word Cloud. Common words that might be overlooked in tabular form are highlighted in the larger text, making them pop out when displayed in a word cloud. There is some controversy about the usefulness of word clouds. Their best use may be for presentations. Word clouds can be used to "compare" texts from similar subjects, e.g., Presidential Inaugural Addresses, job candidate comparisons, etc. Several methods are available to customize the resulting visualization. The class provides defaults that provide a reasonable result. BackgroundColorName - The vtkNamedColors name for the backgound (MidNightBlue). BWMask - Mask image has a single channel(false). Mask images typically have three channels (r,g,b). ColorDistribution - Distribution of random colors(.6 1.0), if WordColorName is not empty. ColorSchemeName - Name of a color scheme from vtkColorSeries to be used to select colors for the words (), if WordColorName is empty. DPI - Dots per inch(200) of the rendered text. DPI is used as a scaling mechanism for the words. As DPI increases, the word size increases. If there are too, few skipped words, increase this value, too many, decrease it. FontFileName - If empty, the built-in Arial font is used(). The FontFileName is the name of a file that contains a TrueType font. FontMultiplier - Font multiplier(6). The final font size is this value * the word frequency. Gap - Space gap of words (2). The gap is the number of spaces added to the beginning and end of each word. MaskColorName - Name of the color for the mask (black). This color is the name of the vtkNamedColors that defines the foreground of the mask. Usually black or white. MaskFileName - Mask file name(). If a mask file is specified, it will be used as the mask. Otherwise, a black square is used as the mask. The mask file should contain three channels of unsigned char values. If the mask file is just a single unsigned char, specify turn the boolean BWMask on. If BWmask is on, the class will create a three channel image using vtkImageAppendComponents. MaxFontSize - Maximum font size(48). MinFontSize - Minimum font size(8). MinFrequency - Minimum word frequency accepted(2). Word with frequencies less than this will be ignored. OffsetDistribution - Range of uniform random offsets(-size[0]/100.0 -size{1]/100.0)(-20 20). These offsets are offsets from the generated path for word layout. OrientationDistribution - Ranges of random orientations(-20 20). If discrete orientations are not defined, these orientations will be generated. Orientations - Discrete orientations for displayed words. If present, this overrides OrientationDistribution. ReplacementPairs - Replace the first word with another second word (). The first word is also added to the StopList. Sizes - Size of image(640 480). StopWords - User provided stop words(). vtkWordCloud has built-in stop words. The user-provided stop words are added to the built-in list. Title - Add this word to the document's words and set a high frequency, so that is will be rendered first. WordColorName - Name of the color for the words(). The name is selected from vtkNamedColors. If the name is empty, the ColorDistribution will generate random colors.
-
- May 15, 2019
-
-
8ffac38e Add API to set/get the unscaled DPI Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !5541
-
67b4abb1 vtkStereoCompositor: add missing override Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !5542
-
Utkarsh Ayachit authored
-
Cory Quammen authored
-
366e3fc8 Merge branch 'upstream-netcdf' into update-netcdf 15694331 netcdf 2019-05-14 (8ab7d7c6) 018cf83d netcdf: change import branch in update script Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !5538
-
d19535e9 Add support for the glTF KHR_lights_punctual extension in vtkGLTFImporter. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Michael Migliore <michael.migliore@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !5536
-
Adrien Boucaud authored
-
- May 14, 2019
-
-
Cory Quammen authored
* upstream-netcdf: netcdf 2019-05-14 (8ab7d7c6)
-
Code extracted from: https://gitlab.kitware.com/third-party/netcdf.git at commit 8ab7d7c6b3e4b7626124657df8af745eea2fe0a0 (for/vtk-20190514-4.6.1).
-
Cory Quammen authored
-
- May 13, 2019
-
-
-
d6d0a46a backport masters merge blocks infrastructure for 5.6.1 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !5535
-
David E. DeMarle authored
This brings in VTK commit 67ec1f63 and subsequent changes to the appendfilter over to the VTK branch that ParaView's release branch uses in order to fix the merge blocks filter in ParaView 5.6.x. See paraview/paraview#18991
-
2a98786d Changes required for latest Moments remote module Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !5452
-
5ff0a170 Fixed error interpolating attributes with multiple contour values Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !5534
-
8446c57d vtkRenderWindow: bug in `VTK_STEREO_RIGHT` 6cfecd8a extracting stereo compositing code from vtkRenderWindow 2bdd7e86 remove obsolete vtkRenderWindow::AccumulationBuffer code. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David E. DeMarle <dave.demarle@kitware.com> Merge-request: !5533
-
Utkarsh Ayachit authored
If vtkRenderWindow::StereoType was set to `VTK_STEREO_RIGHT` but vtkRenderWindow::StereoRender was set to false, the vtkRenderWindow::Render method ended up not rendering anything at all! Fixed that. If StereoRender==false, StereoType should have no effect.
-
Utkarsh Ayachit authored
Creating a new helper class vtkStereoCompositor to extract stereo compositing code from vtkRenderWindow. This allows applications to manually compose together stereo images. `vtkStereoCompositor` also uses vtkSMPTools for some of the stereo compositing techniques.
-
e7f80d5e vtkInstallCMakePackage: install FindHDF5 as well Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Brad King <brad.king@kitware.com> Acked-by:
Patrick Avery <patrick.avery@kitware.com> Merge-request: !5532
-
Sujin Philip authored
-
Will Schroeder authored
These changes address issue #17597.
-
Ben Boeckel authored
-
9ece5db9 now that kwsys has windows stack remove version in VTK Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Brad King <brad.king@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !5519
-
61e49eca Add pathtracer material dictionary d084bb7b Improve pathtracer material library Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Max Zeyen <max.zeyen@kitware.com> Acked-by:
David E. DeMarle <dave.demarle@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Acked-by:
Nicolas Vuaille <nicolas.vuaille@kitware.com> Merge-request: !5505
-
Michael Migliore authored
-
Michael Migliore authored
-
- May 10, 2019
-
-
Utkarsh Ayachit authored
AccumulationBuffer is no longer used. Removing it.
-
9d350f1b hopefully fix the mfix reader and suppress one Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !5529
-
467a6a80 Update vtk-dicom remote to fix overflow warning Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !5528
-
Ken Martin authored
Initialize entries in a table that we not initialized in the mfix reader. Suppress a dynamic analysys test on double plot
-
65a1ad92 Add required includes. cca8a242 Deprecate vtkTemporalStreamTracer and vtkPTemporalStreamTracer 8b9276d7 Deprecate vtkTemporalStreamTracer and vtkPTemporalStreamTracer. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !5522
-
Utkarsh Ayachit authored
H5part reader See merge request vtk/vtk!5524
-
David Gobbi authored
-
Utkarsh Ayachit authored
Moving H5part reader from ParaView over to VTK.
-
Utkarsh Ayachit authored
* upstream-h5part: h5part 2019-05-10 (c4520e7a)
-
Kitware Robot authored
Code extracted from: https://gitlab.kitware.com/third-party/h5part.git at commit c4520e7aba09e3039bb5cfe6ff8972e3cde60761 (for/vtk-20190510-1.6.6).
-
Utkarsh Ayachit authored
adding h5part update scripts etc.
-
39ec56c8 vtkOpenGLGPUVolumeRayCastMapper: handle change in array Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !5523
-
Dan Lipsa authored
-