File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed
Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 1+ ================================================================================
2+ SPy 0.18
3+ ================================================================================
4+ Release date: 2016.06.18
5+
6+ Changes
7+ -------
8+
9+ * Improved handling of ENVI header files:
10+
11+ * If "header offset" is missing, assume the offset is 0.
12+
13+ * Stricter check for "ENVI" in the first line of the file.
14+
15+ * [Issue #42] More-informative exceptions are raised when a problem is
16+ encountered while reading and ENVI header.
17+
18+ * [Issue #46] No longer defaulting `band_quantity` to "Wavelength".
19+
20+ Bug Fixes
21+ ---------
22+
23+ * [Issue #38 and #39] The `tostring` method has been deprecated in newer
24+ versions of PIL/Pillow. Using `tobytes` now and falling back to `tostring`
25+ if it fails.
26+
27+ * [Issue #40] An exception was raised when trying to get a pixel's row/col
28+ by CTRL-SHIFT-clicking in the ND window display.
29+
30+ * [Issue #44] Matplotlib was being set to interactive mode even if no SPy
31+ windows were displayed. This would affect behavior of other code using
32+ Matplotlib. Interactive mode is now set only once the first display is
33+ requested.
34+
35+ * [Issue #49] `GaussianClassifier` and `MahalanobisDistanceClassifier` method
36+ `classify_image` was failing when applied to an object that was not a
37+ numpy.ndarray (e.g., a `SpyFile` or `TransformedImage`).
38+
139================================================================================
240SPy 0.17
341================================================================================
Original file line number Diff line number Diff line change 3131
3232from __future__ import division , print_function , unicode_literals
3333
34- __version__ = '0.17 '
34+ __version__ = '0.18 '
3535
3636import sys
3737if sys .byteorder == 'little' :
You can’t perform that action at this time.
0 commit comments