diff --git a/CHANGELOG.md b/CHANGELOG.md index c275b15b702d73b2e5c98460c83a08d88d41489d..f68054a963eb966597130b06b1fcb63098840e4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ release. --> ## [Unreleased] +## [1.0.1] ### Added - Logging to `affine` transformation that warns when the absolute value of the shear on the affine transformation is greater than 1e-2. High shear in the transformation matric was observed attempting to match nadir LROC-NAC to high slew LROC-NAC data. These high slew images do not match well to nadir images. Additionally, the `x_read_length` and `y_read_length` variables in the `Roi` class (`roi.py`) have a hard coded read length of two times the passed size. This read size is insufficient as the affine shear increases. A candidate enhancement would be to automatically compute the read size based on the affine transformation. This was not done in this addition as matching between high slew and nadir images using a correlation coefficient based approach is quite poor. - Image check into `place_points_in_overlap` that ensures that the candidate reference image exists on disk. If it does not, the algorithm skips attempting to place points in that image and attempts to use the next image. This was added for LROC NAC control as some images may fail to download. diff --git a/conda/meta.yaml b/conda/meta.yaml index 82230afd21d3570ddecb03e54d3da98ec9dad178..77634597c357435ded19e3b1bc06eb6051629360 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,6 +1,6 @@ package: name: autocnet - version: 0.6.2 + version: 1.0.1 channels: - conda-forge diff --git a/setup.py b/setup.py index 9a01d820d0a402d73e4c2a912802bf15338751b6..722de77abf6d89f626c77f7a4366e5c41f78ec62 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages with open('README.md', 'r') as f: long_description = f.read() -__version__ = '1.0.0' +__version__ = '1.0.1' def setup_package(): setup(