You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.3 KiB

9 years ago
9 years ago
  1. ## [1.1.4] - 2015-10-27
  2. ### FIXED
  3. - Implemented missing get_image_by_attributes method
  4. ## [1.1.3] - 2015-10-16
  5. ### FIXED
  6. - ND2s with a single image can now be parsed
  7. ## [1.1.2] - 2015-10-09
  8. ### ADDED
  9. - `Image` objects now have a `frame_number` attribute.
  10. - `Nd2` can be used as a context manager.
  11. - More unit tests and functional tests
  12. ### CHANGED
  13. - `Image` objects now directly subclass Numpy arrays.
  14. - Refactored code to permit parsing of different versions of ND2s, which will allow us to add support for NIS Elements 3.x.
  15. ### DEPRECATED
  16. - The `data` attribute is no longer needed since `Image` is now a Numpy array.
  17. - The `image_sets` iterator will be removed in the near future. You should implement this yourself.
  18. ## [1.1.1] - 2015-09-02
  19. ### FIXED
  20. - Images returned by indexing would sometimes be skipped when the file contained multiple channels
  21. ### CHANGED
  22. - Dockerfile now installs scikit-image to make visual testing possible
  23. ## [1.1.0] - 2015-06-03
  24. ### ADDED
  25. - Indexing and slicing of images
  26. - Python 3 support
  27. - Dockerfile support for Python 3.4
  28. - Makefile commands for convenient testing in Docker
  29. - Unit tests
  30. ### CHANGED
  31. - Switched to setuptools to automatically install missing dependencies
  32. - Made the interface for most metadata public
  33. - Refactored some poorly-named things
  34. ## [1.0.0] - 2015-05-23
  35. ### Added
  36. - First stable release!