1. 09 Feb, 2024 1 commit
  2. 13 Nov, 2023 1 commit
  3. 30 Aug, 2023 1 commit
  4. 22 Aug, 2023 1 commit
  5. 01 Aug, 2023 1 commit
  6. 31 Jul, 2023 1 commit
  7. 28 Jul, 2023 1 commit
  8. 27 Jul, 2023 1 commit
  9. 24 Feb, 2023 3 commits
  10. 21 Feb, 2023 1 commit
  11. 16 Feb, 2023 2 commits
  12. 14 Feb, 2023 1 commit
  13. 13 Feb, 2023 2 commits
  14. 31 Jan, 2023 1 commit
  15. 24 Jan, 2023 1 commit
  16. 05 Dec, 2022 1 commit
  17. 21 Oct, 2022 3 commits
  18. 12 Oct, 2022 1 commit
  19. 11 Oct, 2022 1 commit
    • Vasilis Vryniotis's avatar
      [prototype] Switch to `spatial_size` (#6736) · 4d4711d9
      Vasilis Vryniotis authored
      * Change `image_size` to `spatial_size`
      
      * Fix linter
      
      * Fixing more tests.
      
      * Adding get_num_channels_video and get_spatial_size_* kernels for video, masks and bboxes.
      
      * Refactor get_spatial_size
      
      * Reduce the usage of `query_chw` where possible
      
      * Rename `query_chw` to `query_spatial_size`
      
      * Adding `get_num_frames` dispatcher and kernel.
      
      * Adding jit-scriptability tests
      4d4711d9
  20. 10 Oct, 2022 1 commit
    • Vasilis Vryniotis's avatar
      Adding support of Video to remaining Transforms and Kernels (#6724) · a3fe870b
      Vasilis Vryniotis authored
      * Adding support of Video to missed Transforms and Kernels
      
      * Fixing Grayscale Transform.
      
      * Fixing FiveCrop and TenCrop Transforms.
      
      * Fix Linter
      
      * Fix more kernels.
      
      * Add `five_crop_video` and `ten_crop_video` kernels
      
      * Added a TODO.
      
      * Missed Video isinstance
      
      * nits
      
      * Fix bug on AugMix
      
      * Nits and TODOs.
      
      * Reapply Philip's recommendation
      
      * Fix mypy and JIT
      
      * Fixing test
      a3fe870b
  21. 07 Oct, 2022 2 commits
    • Philip Meier's avatar
      replace new_like with wrap_like (#6718) · 4c049ca3
      Philip Meier authored
      * replace new_like with wrap_like
      
      * fix videos
      
      * revert casting in favor of ignoring mypy
      4c049ca3
    • Philip Meier's avatar
      add Video feature and kernels (#6667) · 3118fb52
      Philip Meier authored
      * add video feature
      
      * add video kernels
      
      * add video testing utils
      
      * add one kernel info
      
      * fix kernel names in Video feature
      
      * use only uint8 for video testing
      
      * require at least 4 dims for Video feature
      
      * add TODO for image_size -> spatial_size
      
      * image -> video in feature constructor
      
      * introduce new combined images and video type
      
      * add video to transform utils
      
      * fix transforms test
      
      * fix auto augment
      
      * cleanup
      
      * address review comments
      
      * add remaining video kernel infos
      
      * add batch dimension squashing to some kernels
      
      * fix tests and kernel infos
      
      * add xfails for arbitrary batch sizes on some kernels
      
      * fix test setup
      
      * fix equalize_image_tensor for multi batch dims
      
      * fix adjust_sharpness_image_tensor for multi batch dims
      
      * address review comments
      3118fb52
  22. 23 Sep, 2022 1 commit
  23. 14 Sep, 2022 1 commit
  24. 31 Aug, 2022 1 commit
    • Vasilis Vryniotis's avatar
      Prototype Transform cleanups and bugfixing (#6512) · 54dd0a59
      Vasilis Vryniotis authored
      
      
      * clean up bboxes
      
      * Correcting bug on RandAugment.
      
      * Fix bug on erase()
      
      * Moving `_parse_pad_padding()` to functional geometry
      
      * Fixing bug on deprecated Grayscale transforms
      
      * Porting old bugfixes from main branch to _apply_image_transform
      
      * Dropping mandatory keyword arguments to maintain BC.
      
      * Adding antialias option where possible.
      
      * Specifying types in `_transform()` where possible.
      
      * Add todo.
      
      * Fixing tests.
      
      * Adding padding_mode in pad_bbox
      Co-authored-by: default avatarvfdev <vfdev.5@gmail.com>
      54dd0a59
  25. 26 Aug, 2022 2 commits
    • Philip Meier's avatar
      More cleanup for prototype transforms (#6500) · 7245dc9e
      Philip Meier authored
      * add aliases for hflip and vflip
      
      * reduce imports from torchvision.transforms in torchvision.prototype.transforms
      
      * add aliases for to_pil_image abd pil_to_tensor
      
      * deprecate to_tensor
      
      * add some FIXME cleanup comments
      
      * address reviews
      
      * add dimension getters
      
      * undeprecate PILToTensor and ToPILImage
      
      * address review
      
      * fix test
      7245dc9e
    • Philip Meier's avatar
      move simple_tensor to features module (#6507) · 7de63171
      Philip Meier authored
      * move simple_tensor to features module
      
      * fix test
      7de63171
  26. 25 Aug, 2022 2 commits
    • Vasilis Vryniotis's avatar
      [proto] Use the proper `_transformed_types` in all Transforms and eliminate... · 9f6a189e
      Vasilis Vryniotis authored
      [proto] Use the proper `_transformed_types` in all Transforms and eliminate unnecessary dispatching (#6494)
      
      * Update types in deprecated transforms.
      
      * Update types in type conversion transforms.
      
      * Fixing types in meta transforms.
      
      * More changes on type conversion.
      
      * Bug fix.
      
      * Fix types
      
      * Remove unnecessary conversions.
      
      * Remove unnecessary import.
      
      * Fixing tests
      
      * Remove copy support from `to_image_tensor`
      
      * restore test param
      
      * Fix further tests
      9f6a189e
    • vfdev's avatar
      [proto] Fixes Transform._transformed_types and torch.Tensor (#6487) · 0eb8aabd
      vfdev authored
      * Fixes unexpected behaviour with Transform._transformed_types and torch.Tensor
      
      * Make code consistent to has_any, has_all implementation
      
      * Fixed failing flake8 check
      0eb8aabd
  27. 24 Aug, 2022 1 commit
  28. 16 Aug, 2022 1 commit
    • Philip Meier's avatar
      Proto transform cleanup (#6408) · c0ba3ec8
      Philip Meier authored
      * fix TenCrop
      
      * use dispatchers for RandomPhotometricDistort
      
      * add convert_color_space dispatcher and use it in conversion transforms
      
      * fix convert_color_space naming scheme
      
      * add to_color_space method to Image feature
      
      * remove TODO from BoundingBox.to_format()
      
      * fix test
      
      * fix imports
      
      * fix passthrough
      
      * remove apply_recursively in favor of pytree
      
      * refactor BatchMultiCrop
      c0ba3ec8
  29. 29 Jul, 2022 1 commit
  30. 22 Jul, 2022 1 commit
  31. 04 Apr, 2022 1 commit