1. 25 Oct, 2018 1 commit
  2. 29 Aug, 2018 1 commit
  3. 25 Aug, 2018 1 commit
  4. 28 May, 2018 1 commit
  5. 15 May, 2018 1 commit
  6. 04 May, 2018 1 commit
  7. 16 Apr, 2018 1 commit
  8. 06 Apr, 2018 1 commit
    • anguelos's avatar
      A minor change for transforms.RandomCrop (#462) · 4e6faa75
      anguelos authored
      * Made transorms.RandomCrop tolerate images smaller than the given size.
      
      * Extended the tescase for transforms.RandomCrop
      
      * Made the testcase test for owidth=width+1
      
      * Fixed the one pixel pading and the testcase
      
      * Fixed minor lintint errors. flake8 passes.
      4e6faa75
  9. 04 Apr, 2018 1 commit
  10. 10 Mar, 2018 1 commit
    • Frédérik Paradis's avatar
      Adding a DatasetFolder class. (#444) · fa377c47
      Frédérik Paradis authored
      * Adding tests to ImageFolder
      
      * Adding DatasetFolder class
      
      * Fix tests for pytest and code for lint checker
      
      * Adding mock to requirements for ImageFolder tests
      
      * Remove mocks from requirements
      fa377c47
  11. 09 Mar, 2018 2 commits
  12. 20 Feb, 2018 1 commit
  13. 12 Feb, 2018 3 commits
  14. 01 Jan, 2018 1 commit
  15. 13 Nov, 2017 1 commit
  16. 09 Nov, 2017 1 commit
  17. 02 Nov, 2017 1 commit
  18. 17 Oct, 2017 2 commits
  19. 15 Oct, 2017 1 commit
  20. 13 Oct, 2017 1 commit
  21. 12 Oct, 2017 1 commit
  22. 07 Oct, 2017 1 commit
    • Iacopo Poli's avatar
      Added Whiten transform and its section in README (#263) · cee28367
      Iacopo Poli authored
      * added Whiten transform and relative section in README
      
      * added Whiten transform and its section in README
      
      * fixed lint
      
      * fixed lint again
      
      * added linear transformation and whitening test unitary covariance
      
      * fixed lint and test
      
      * commit before rebasing
      
      * before rebase
      
      * added assertion to check matrix size
      
      * fix readme
      
      * added space around operator
      
      * replace assert with raise ValueError, fix spaces and readme
      cee28367
  23. 05 Oct, 2017 1 commit
  24. 04 Oct, 2017 1 commit
    • Sasank Chilamkurthy's avatar
      Add Color transforms (#275) · 618072bf
      Sasank Chilamkurthy authored
      * Add adjust_hue and adjust_saturation
      
      * Add adjust_brightness, adjust_contrast
      
      Also
      * Change adjust_saturation to use pillow implementation
      * Documentation made clear
      
      * Add adjust_gamma
      
      * Add ColorJitter
      
      * Address review comments
      
      * Fix documentation for ColorJitter
      
      * Address review comments 2
      
      * Fallback to adjust_hue in case of BW images
      
      * Add tests
      
      * fix dtype
      618072bf
  25. 01 Oct, 2017 1 commit
  26. 26 Sep, 2017 3 commits
  27. 16 Sep, 2017 1 commit
  28. 12 Sep, 2017 1 commit
  29. 08 Sep, 2017 1 commit
  30. 04 Sep, 2017 1 commit
  31. 03 Sep, 2017 1 commit
  32. 21 Apr, 2017 1 commit
  33. 17 Apr, 2017 1 commit
  34. 06 Apr, 2017 1 commit
    • Huan Yang's avatar
      Add support for Transforms.Scale([w, h]) with specific width and height (#133) · f6d49d8b
      Huan Yang authored
      * Fixed border missing on bottom and right side using make_grid
      
      * Add support for Transforms.Scale([h, w]) with specific height and width
      
      if self.size is a int then scale the image with the shorter side,
      otherwise if self.size is a list then scale the image to self.size
      directly
      
      * Add assert of size and doc for README
      
      Add assert of size and doc for README
      
      * Fix linter problem
      
      Fix linter problem
      
      * Add test for Scale
      
      Add test for Scale
      
      * Add both tuple and list support for Scale.size
      
      Add both tuple and list support for Scale.size
      
      * Add order of Scale.size in document and test case for list type of Scale.size
      
      Add order of Scale.size in document and test case for list type of
      Scale.size
      f6d49d8b