kikuchipy is an open-source Python library for processing, simulating and indexing of electron backscatter diffraction (EBSD) patterns.
See below, the changelog or the GitHub changelog for all updates from the previous release.
Changed
- Minimum Python version is now 3.8. (#674)
- Minimum NumPy version is now 1.23.0. (#674)
- Minimum Numba version is now 0.57.0. (#674)
- Minimum scikit-image version is now 0.22.0. (#674)
- Upon creation of an
EBSDDetector
, the following attributes are forced to be floats: sample tilt, tilt, azimuthal angle, binning, pixel size, and the projection centers (PCs). (#677) - Simpler string representation of an
EBSDDetector
, also showing the sample tilt. (#677) - Exclude PyEBSDIndex versions 0.3.0 and 0.3.1 since these versions cannot perform Hough indexing with Dask arrays. This was previously unintentionally supported due to a side-effect. It should now be supported going forward. (#678)
Fixed
- The order of the new shape of the detector of a downsampled EBSD signal, returned from
downsample()
, was previously previously incorrect, (n columns, n rows). This is now correct, (n rows, n columns). (#674)