- Dec 30, 2011
-
-
David Doria authored
The variable aNode was set but not used. Change-Id: I35223d37bdc9e251acdf9fe79255e8ddd02809f5
-
Kitware Robot authored
-
- Dec 29, 2011
-
-
b47d9ea7 BUG: Check if input updated since the image mapper updated.
-
David Gobbi authored
When an input to vtkImageSliceMapper had multiple consumers, if any of the consumers required a different extent than the mapper, then the mapper would get the wrong extent on its next update and crash. Comparing the input's update time with the mapper's update time allows the update to be forced when necessary. Change-Id: I248ccf2b8cb7bd37d0e9ba894775d741c3c389bb
-
4ee21897 ENH: A b-spline image interpolator and a b-spline warp transform.
-
5ced2edd ENH: Add vtkImageResize, a fast antialiased resizing filter.
-
a1fda5a1 ENH: Fix warnings.
-
e7ddbc02 Fix typo in ResliceCursorBindingsUpdate commit
-
Karthik Krishnan authored
Fix the missing braces
-
8d9db2a2 Do not scroll sclices with mouse modifiers depressed
-
Karthik Krishnan authored
The slice scroll in the previous commit should work only when there are no mouse modifiers depressed
-
David Gobbi authored
This commit contains code that originated in the VTK Journal: DG Gobbi and YP Starreveld "Uniform B-Splines for the VTK Imaging Pipeline" http://hdl.handle.net/10380/3252 The vtkImageBSplineInterpolator is an image interpolator that uses uniform b-splines. Prior to interpolation, images must be filtered with vtkImageBSplineCoefficients to compute the knot coefficients. The vtkBSplineTransform implements a cubic b-spline warp grid. Change-Id: Ib8c95cc736fc7db194cc1bcd21ef48c1e82e16a2
-
David Gobbi authored
This filter uses a sliding buffer to store intermediate results while interpolating an image. This allows the use of interpolation kernels of very large size N, because the time is O(N) instead of O(N^3) as required by vtkImageResample and vtkImageReslice. Unlike the more traditional three-pass approach of fast filtering, the sliding buffer approach has very small memory overhead. Three-pass filtering has a 200% memory overhead, while sliding buffer typically has an overhead of 10% or less. The default interpolation kernel is a 5-lobe windowed sinc (Lanczos). Image magnification uses a kernel size of 6, while image shrinking uses a larger kernel size to provide a brick-wall low-pass filter for antialiasing. Change-Id: I4b58952fdf167ffa545e87213e70fca0ed0c4bb1
-
Kitware Robot authored
-
- Dec 28, 2011
-
-
2b99317d BUG: Added missing vtkTypeMacro.
-
Marcus D. Hanwell authored
This was causing a compilation failure in ParaView's client server wrapping. Change-Id: I06b95677145b2fff9a3dfdc0522968399ac187f3
-
f41b22ec ENH: suppress type qualifier warning for gcc
-
David Gobbi authored
Added a supression of 'type qualifiers ignored on function return type' that gcc 4.3 (and later) complains about with the 'void const' return type of the TestCxxFeatures.cxx funciton TestVoidConstReturn(). Change-Id: Ibd963832fc7e604da1ceec6633b9deda032839a6
-
David Doria authored
vtkTypeMacro and VTK_FILTERING_EXPORT were missing from vtkGraphWeightFilter. '// superclass' should not be present Wrap some unused variables in vtkNotUsed Removed an unused variable from the test. Change-Id: Ia9cb7acc73cbcb1b24c6660196ab38b9deba2f92
-
3e2cf5d1 ENH: Added a class to weight graph edges.
-
David Gobbi authored
Change-Id: If73313b275d0267ea55035b95d8d03d164c4cbf8
-
David Gobbi authored
Change-Id: I6b7d499f9f6700ea43173c4392d7a6591bf5dae0
-
David Gobbi authored
Change-Id: Id9d3e73cccbbdac51ddae7ca7da82d29d7b63a7b
-
Kitware Robot authored
-
- Dec 27, 2011
-
-
Kitware Robot authored
-
- Dec 26, 2011
-
-
0ee96fa4 Fixed bug in vtkYoungsMaterialInterface
-
Kitware Robot authored
-
- Dec 25, 2011
-
-
Kitware Robot authored
-
- Dec 24, 2011
-
-
Kitware Robot authored
-
- Dec 23, 2011
-
-
Kitware Robot authored
-
- Dec 22, 2011
-
-
fd33d969 BUG: Memory leak.
-
Bill Lorensen authored
this->Internals was allocated in the constructor, but not freed in the destructor. valgrind detected leaks in two tests:ProjectedTetrahedraZoomIn and TestProjectedHexahedra. This is the second application of this patch. Somehow the first one was lost. Change-Id: Iefaaa08a1908d03ba0a68f397c55234f8501899a
-
Kitware Robot authored
-
- Dec 21, 2011
-
-
Kitware Robot authored
-
- Dec 20, 2011
-
-
Philippe Pébay authored
Change-Id: If9eff6df1ac8daa600fd17f58e6fc43ae7a71e5e
-
c788d618 BUG: Clipping planes caused misses when picking images.
-
David Gobbi authored
The vtkCellPicker was recently modified to pick vtkImageSlice props rather than vtkImageActor props. A clip check was done against the image bounds, which is valid for ImageActor, but for ImageSlice the check must be delayed until after the pick ray has been intersected with the image plane. Change-Id: I08ba9ee6ae1405adf09254d189bee494c43b150d
-
e0fc261e Removing vtkstd.
-
Utkarsh Ayachit authored
Change-Id: I14215385868b6f87a1093e2a2c7a9810856e9fc7
-