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.

67 lines
2.2 KiB

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