Skip to content
Snippets Groups Projects
  1. Jan 08, 2019
  2. Dec 20, 2018
  3. Nov 30, 2018
  4. Nov 23, 2018
  5. Sep 27, 2018
  6. Sep 14, 2018
  7. Aug 29, 2018
  8. Aug 06, 2018
  9. Aug 01, 2018
    • Shreeraj Jadhav's avatar
      vtkImageBlend bug fix for compound mode · 92175bff
      Shreeraj Jadhav authored
      vtkImageBlend was not blending images correctly in compound mode
      for 2-channel (LA) and 1-channel images.
      Test case has been added to test the compound mode, which
      was previously missing.
      92175bff
  10. Jun 18, 2018
  11. Jun 17, 2018
  12. Jun 05, 2018
  13. May 29, 2018
    • David Gobbi's avatar
      Expand the description of vtkImageMapToWindowLevelColors · 086c487f
      David Gobbi authored
      This filter is most often to apply a Window/Level operation to
      grayscale input data, without a lookup table, so I have put that
      first in the description.  The less-common use of modulating the
      color produced by a lookup table has been moved to the end.
      086c487f
  14. May 25, 2018
  15. May 18, 2018
    • Kitware Robot's avatar
      ExternalData: Convert content links from MD5 to SHA512 · d6d05b2a
      Kitware Robot authored and Brad King's avatar Brad King committed
      Populate a script with `map_<md5>=<sha512>` variable settings and
      then run the following to convert the content link files:
      
          git ls-files -- '*.md5' | while read f; do
            md5="$(cat "$f")"
            sha512="$(eval echo \${map_$md5})"
            rm "$f"
            echo $sha512 > ${f%.md5}.sha512
          done
      d6d05b2a
  16. May 08, 2018
    • David Gobbi's avatar
      Fix misuse of purportedly boolean Border. · 8847a29e
      David Gobbi authored
      The vtkImageResliceMapper was setting "Border" to 2, even though
      the API suggests that it is meant to be boolean.  This commit adds
      a new method called SetBorderThickness().
      8847a29e
  17. Apr 15, 2018
    • David Gobbi's avatar
      Limit number of threads in vtkImageHistogram · 7b5a07bb
      David Gobbi authored
      This new code ensures that the number of threads created will not
      exceed the number of pieces that the data has been divided into,
      so each thread will have at least some work to do.
      
      It would probably be wise to go even further, and set a reasonable
      minimum piece size so that fewer threads are allocated for smaller
      images.
      7b5a07bb
  18. Mar 20, 2018
  19. Mar 08, 2018
  20. Jan 29, 2018
  21. Jan 19, 2018
  22. Jan 04, 2018
  23. Dec 27, 2017
  24. Dec 20, 2017
Loading