- Sep 19, 2016
-
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
Not supported everywhere.
-
- Sep 16, 2016
-
-
Ben Boeckel authored
-
b519d598 Making CellIterators have same point data type as the input data set. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1960
-
Andrew Bauer authored
For accuracy the classes that derive from vtkCellIterator that use data sets with vtkPoints for their point storage should have the same floating point accuracy. This was already done for vtkPointSetCellIterator but not the others.
-
bc164c33 Fix leak in TestExtractTimeSteps. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Bill Lorensen <bill.lorensen@gmail.com> Merge-request: !1962
-
Utkarsh Ayachit authored
-
feb9251d Reducing output amount from vtkTemporalStatistics filter. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Thompson <david.thompson@kitware.com> Merge-request: !1944
-
- Sep 15, 2016
-
-
7cafcc7c Fix memory leak in TestImageConnectivityFilter Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1957
-
David Gobbi authored
-
Andrew Bauer authored
For inputs with a lot of time steps and/or arrays, the warning from the vtkTemporalStatistics filter can be generated a lot of times. This change will only do it once per filter invocation.
-
5cdbe488 Making vtkPointSetCellIterator have same point data type as the vtkPointSet. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1955
-
- Sep 14, 2016
-
-
b6a9c94b Update the vtkDICOM remote module to 0.7.10. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1956
-
David Gobbi authored
The dependencies in the module.cmake files for the various VTK were recently cleaned up to minimize module inter-dependencies, and this unfortunately caused the unmarked dependency of vtkDICOM on the VTK module vtkCommonSystem to be exposed. So the v0.7.10 release of vtk-dicom exists to remove this dependency.
-
Andrew Bauer authored
-
60d9d023 Add vtkImageConnectivityFilter Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !1946
-
2458878b Test new vtkAssignAttribute behavior 11d0d8f8 Pass all available attribute information in vtkAssignAttribute Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1908
-
David Gobbi authored
This is the vtkImageData equivalent of vtkPolyDataConnectivityFilter. It performs connectivity checks on points with values within a specific scalar range (by default, it checks all points with values > 0). Its output is a label image, where each connected region is assigned an integer label value. Unlabeled points are assigned a value of zero.
-
4497fc65 Add a filter that groups a time series into a multiblock dataset Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1894
-
bc563cc9 Add support for composite datasets to vtkExtractTemporalFieldData. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Shawn Waldon <shawn.waldon@kitware.com> Merge-request: !1947
-
93bddde0 GetMTime: fix some missed mtime type changes Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David E DeMarle <dave.demarle@kitware.com> Merge-request: !1949
-
Ben Boeckel authored
-
- Sep 13, 2016
-
-
Utkarsh Ayachit authored
vtkExtractTemporalFieldData poorly handled composite datasets, esp. those generated by readers like vtkExodusIIReader. Added ability to the filter to use only the 1st non-empty leaf node's field-data to produce the output -- a more suitable solution for vtkExodusIIReader's output, since vtkExodusIIReader duplicates global data on all leaf nodes. Added a test, extractTemporalFieldData, that tests this filter along with the new functionality. Needed to address paraview/paraview#16100.
-
Shawn Waldon authored
This filter is part of the implementation of paraview/paraview#16825.
-
e7b9d312 Add extern template decls for vtkArrayIterator 31a63a45 Simplify extern template declarations for arrays ff7ce07d Simplify extern template declaration be8d2a8e Simplify template macros in vtkPythonArgs Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !1904
-
eff36261 Add vtkExtractTimeSteps filter and test Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1939
-
Sujin Philip authored
vtkExtractTimeSteps extracts the specified time steps from the input dataset. The timesteps to be extracted are specified by their indices. If no time step is specified, all of the input time steps are extracted. This filter is useful when one wants to work with only a sub-set of the input time steps.
-
057462bf Update the vtkDICOM remote module to 0.7.9. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1943
-
David Gobbi authored
Changes since 0.7.8: - Update dictionary using 2016c Part 6. - Update private dictionaries from dicom3tools. - Automatically perform YBR to RGB conversion in reader. - Add a ShowHidden option to vtkDICOMDirectory. - Move UID generation into its own class. - Make dicomfind {} substitution more flexible. - Allow adding to the directory input file names. - Change the brace style to non-indented. - Change all header documentation to doxygen. Bug fixes since 0.7.8: - Fix broken SetInputFileName() method of FileSorter. - If duplicate instances are found, split into different series. - Made the IsDICOMFile() check more lenient. - Use UID, not Instance, to find duplicates in vtkDICOMFileSorter. - Skip localizers at the beginning of a series. - Do not reject unrecognized VRs that include a 'space' character. - Check for repeated filenames when building vtkDICOMDirectory.
-
- Sep 12, 2016
-
-
82021e42 VTK Bug15270: Correct empty condition for vtkGlyph3DMapper Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
T.J. Corona <tj.corona@kitware.com> Reviewed-by:
T.J. Corona <tj.corona@kitware.com> Merge-request: !1729
-
David Gobbi authored
The template instantiations were moved out of the array classes and into their own source file, rather than adding the extern template declarations into the header file of each array class. This was done to avoid repeating the same code block across many header files.
-
David Gobbi authored
This unifies the extern template declarations between MSVC and other compilers for C++11 compilation. There is still some old code to support extern template for MSVC 2008 and 2010, this code can be removed when we drop those compilers.
-
27eb09b1 VTK Bug #16736: Add large data support&test for vtkMPIImageReader Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1683
-
Haocheng LIU authored
When working on an empty polydata, vtkGlyph3DMapper::GetBounds would return the bounds of the glyph instead of vtkMath::UninitializedBounds. This would be confusing because glyph's bounds has nothing to do with the rest of the scene and discrupts vtkRenderer::ResetCameraClippingRange. To fix this, a check condition is added and a new test file is included.
-
684bddb7 Fix QuadRotationalExtrusionFilter bug. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Reviewed-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !1940
-
5c248d2b In vtkGenericCell, add method to expose representative cell. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Lonie <david.lonie@kitware.com> Merge-request: !1941
-
6e113ad4 Rewrite all public&private dependency in module.cmake file Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1807
-
Haocheng LIU authored
The current dependency relationship in vtk is unclear and misleading. This MR tries to rewrite them based on header files inclusion of headers and source files in each module. Corner cases are considered and modules are sorted in alphabetical order to facilitate future reference. See details in my gitlab python based script project. In future we can continue using this script to clean the VTK Dependency easily from time to time.
-