Orientation refinement of two-phased crystal map from Hough indexing #630
-
As I have understood, when doing dictionary indexing on a multi-phased specimen, it is ideal to refine the orientations of each crystal map (one for each phase) before merging the results together. However, the You have maybe thought about this already, but I was wondering if there is a way to make it refine orientations for the whole specimen for each phase. I have thought about using Hough indexing on one phase at the time, to create two crystal maps (one for each phase) before refining orientations and merging the results myself (like DI). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Very good question. I did not think of this workflow, which is why it is not covered in any tutorial. However, it is fully possible with the current tools! We just need to move some extra data around. PyEBSDIndex' You shouldn't need to worry about how the This workflow should be covered in the docs. I've been thinking about adding some small multi phase datasets to the data module for testing and doc purposes, but haven't found the time... |
Beta Was this translation helpful? Give feedback.
Very good question. I did not think of this workflow, which is why it is not covered in any tutorial. However, it is fully possible with the current tools! We just need to move some extra data around.
PyEBSDIndex'
EBSDIndexer.index_pats()
returns data per point for the combined phase map and per phase, meaning that it returns three "values" per point if we have two phases in our dataset.EBSD.hough_indexing()
only returns the combined crystal map by default, but you can ask for the full data array returned by PyEBSDIndex with the additional "values" by passingreturn_index_data=True
(docs). You can then pass thisindex_data
array toxmap_from_hough_indexing()
(docs) with the corresponding…