Skip to content

Latest commit

 

History

History
74 lines (57 loc) · 4.31 KB

CHANGELOG.md

File metadata and controls

74 lines (57 loc) · 4.31 KB

ImageTransformations

Version v0.9.3

  • Bugfix Do not modify original image when resizing. (#151)

Version v0.9.2

  • Enhancement The in-place version of resize function imresize! is optimized and exported. (#150)

Version v0.9.1

  • Enhancement angles in imrotate are processed with high precision, restoring it to the same behavior you'd get from a manually-constructed tform supplied to warp. This can change the presence/absence of padding on the edges. (#148, #149)

Version v0.9.0

This release contains numerous enhancements as well as quite a few deprecations. There are also internal changes that may cause small numerical differences from previous versions; these may be most obvious at the borders of the image, where decisions about inbounds/out-of-bounds can determine whether a "fill-value" is used instead of interpolation.

  • BREAKING Previously, SubArray passed to invwarpedview will use out-of-domain values to build a better result on the border. This violated the array abstraction and has therefore been removed. (#138)
  • BREAKING Rounding for numerical stability in warp is now applied to the corner points instead of to the transformation coefficients. (#143)
  • Deprecation degree and fill arguments are deprecated in favor of their keyword versions method and fillvalue. (#116)
  • Deprecation invwarpedview is deprecated in favor of InvWarpedView. (#116, #138)
  • Deprecation warpedview is deprecated in favor of WarpedView. (#116)
  • Enhancement restrict/restrict! are moved to more lightweight package ImageBase.jl. (#127)
  • Enhancement imresize now works on transparent colorant types(e.g., ARGB). (#126)
  • Enhancement restrict now works on 0-argument colorant types(e.g., ARGB32). (ImageBase#3)
  • Bugfix Interpolations v0.13.3 compatibility (though 0.13.4 is now required). (#132)
  • Bugfix restrict on singleton dimension is now a no-op. (ImageBase#8)
  • Bugfix restrict on OffsetArray always returns an OffsetArray result. (ImageBase#4)