File tree Expand file tree Collapse file tree 2 files changed +42
-1
lines changed
Expand file tree Collapse file tree 2 files changed +42
-1
lines changed Original file line number Diff line number Diff line change 1+ ================================================================================
2+ SPy 0.19
3+ ================================================================================
4+ Release date: 2017.06.04
5+
6+ New Features
7+ ------------
8+
9+ * Rendering functions accept an "ignore" keyword to indicate a bad data value
10+ that will be ignored when calculating color histogram stretches.
11+
12+ * Added `iterator_ij` to iterate over all pixel coordinates for a given
13+ image mask.
14+
15+ * Added `expand_binary_mask_for_window` to expand an image mask to include
16+ all pixels within a fixed size window around each masked pixel.
17+
18+ * Added support for bad band lists (bbl) in ENVI headers and suppress display
19+ of bad bands in spectral plots
20+
21+ * Added optional support for non-lowercase ENVI header parameter names.
22+
23+ Changes
24+ -------
25+
26+ * `principal_components` also accepts a `GaussianStats` object, which can
27+ avoid the need to recompute image/class statistics.
28+
29+ * Added a `SpyException` base class for package-specific exceptions.
30+
31+ Bug Fixes
32+ ---------
33+
34+ * Fixed a bug that potentially produced incorrect results in `map_class_ids`
35+ (issue #53).
36+
37+ * Removed unecessary import that cause python3 compatibility error in
38+ `aviris.open` (issue #54).
39+
40+ * Removed `has_key` call breaking python3 compatibility (issue #56).
41+
142================================================================================
243SPy 0.18
344================================================================================
Original file line number Diff line number Diff line change 3131
3232from __future__ import division , print_function , unicode_literals
3333
34- __version__ = '0.18 '
34+ __version__ = '0.19 '
3535
3636import sys
3737if sys .byteorder == 'little' :
You can’t perform that action at this time.
0 commit comments