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.

71 lines
2.2 KiB

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