compute_refine_orientation_results#
- kikuchipy.indexing.compute_refine_orientation_results(results: Array, xmap: CrystalMap, master_pattern: EBSDMasterPattern, navigation_mask: ndarray | None = None, pseudo_symmetry_checked: bool = False) CrystalMap[source]#
Compute the results from
refine_orientation()and return theCrystalMap.- Parameters:
- results
Dask array returned from
refine_orientation().- xmap
Crystal map passed to
refine_orientation()to obtainresults.- master_pattern
Master pattern passed to
refine_orientation()to obtainresults.- navigation_mask
Navigation mask passed to
refine_orientation()to obtainresults. If not given, it is assumed that it was not given torefine_orientation()either.- pseudo_symmetry_checked
Whether pseudo-symmetry operators were passed to
refine_orientation(). Default isFalse.
- Returns:
xmap_refinedCrystal map with refined orientations, scores, the number of function evaluations and the pseudo-symmetry index if
pseudo_symmetry_checked=True. See the docstring ofrefine_orientation()for details.