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.

62 lines
2.0 KiB

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