Releases: haruishi43/equilib
Releases · haruishi43/equilib
Release Version 0.5.8
clip_output
argument for all functions. The default isclip_output=True
, but this can be turned off in the case that you want to return a raw output- clipping is based on the input array/tensor instead of assuming that the range is 0.0 to 1.0.
Release Version 0.5.7
- removed deprecated numpy functions
- merged #16
Release Version 0.5.6
Reduced artifacts for cube2equi
and equi2cube
transform #12 .
Release Version 0.5.5
Fix offset issue
Release Version 0.5.2
Fixed bugs.
Added naive BFoV script.
Release Version 0.5.1
Fixed bugs for base.py
Release Version 0.5.0: Stable Release
Skipped 0.4.0.
Major Changes:
- Minor changes to arguments for functions and classes
- Major changes to
grid_sample
function. Finally got around to compare the implementedgrid_sample
with some baselines such ascv2.remap
andscipy
'smap_coordinates
. Wrote a lot of test codes to make sure that this implementation comes close to them as much as possible. Also comparednumpy
andtorch
'sgrid_sample
and made sure they were close too. mypy
compatible (sort of). This still needs work, but it's a start.- Revamp to test codes (
pytest
). Back then I only checked if it ran, but now I made test codes (and benchmark codes) to test most of the functions (+ alpha). In the future, I might add codecov.
Version 0.3.0
- Fixed coordinate system (previously, README said it was z-axis up, but it was actually z-axis down)
- Refactored code
0.2.1
- edit readme
- minor bugs
0.2.0
- New APIs
- Automatic detection of input types (
numpy.ndarray
,torch.Tensor
, etc.) - Revised test codes