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.

75 lines
2.4 KiB

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