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.

59 lines
2.0 KiB

10 years ago
10 years ago
  1. ## [2.0.0] - 2015-12-20
  2. ### ADDED
  3. - `select()` method to rapidly iterate over a subset of images matching certain criteria
  4. - We parse metadata relating to the physical camera used to produce the images
  5. - Raw metadata can be accessed conveniently, to allow contributors to find more interesting things to add
  6. - An XML parsing library was added since the raw metadata contains some XML blocks
  7. - The version number is now available in the nd2reader module
  8. - Created a DOI to allow citation of the code
  9. ### REMOVED
  10. - The `ImageGroup` container object
  11. - The `data` attribute on Images. Images now inherit from ndarray, making this redundant
  12. - The `image_sets` iterator
  13. ## [1.1.4] - 2015-10-27
  14. ### FIXED
  15. - Implemented missing get_image_by_attributes method
  16. ## [1.1.3] - 2015-10-16
  17. ### FIXED
  18. - ND2s with a single image can now be parsed
  19. ## [1.1.2] - 2015-10-09
  20. ### ADDED
  21. - `Image` objects now have a `frame_number` attribute.
  22. - `Nd2` can be used as a context manager
  23. - More unit tests and functional tests
  24. ### CHANGED
  25. - `Image` objects now directly subclass Numpy arrays
  26. - Refactored code to permit parsing of different versions of ND2s, which will allow us to add support for NIS Elements 3.x.
  27. ### DEPRECATED
  28. - The `data` attribute is no longer needed since `Image` is now a Numpy array
  29. - The `image_sets` iterator will be removed in the near future. You should implement this yourself
  30. ## [1.1.1] - 2015-09-02
  31. ### FIXED
  32. - Images returned by indexing would sometimes be skipped when the file contained multiple channels
  33. ### CHANGED
  34. - Dockerfile now installs scikit-image to make visual testing possible
  35. ## [1.1.0] - 2015-06-03
  36. ### ADDED
  37. - Indexing and slicing of images
  38. - Python 3 support
  39. - Dockerfile support for Python 3.4
  40. - Makefile commands for convenient testing in Docker
  41. - Unit tests
  42. ### CHANGED
  43. - Switched to setuptools to automatically install missing dependencies
  44. - Made the interface for most metadata public
  45. - Refactored some poorly-named things
  46. ## [1.0.0] - 2015-05-23
  47. ### Added
  48. - First stable release!