Hough indexing and binning #618
-
When I create an EBSDDetector with binning, it does not seem to be applied to the indexer used to do Hough indexing on the signal, which was allowed by version 0.8.0.
I am guessing since hough indexing is a method performed by the signal, I will have to rebin the signal myself before doing the indexing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Yes, the binning parameter only stores information, it is not used to inform any pattern processing or similar operations. The only calculation where it is used is in the conversion of the internal (Bruker) projection center values to the EMsoft convention using EBSDDetector.pc_emsoft(). It is also updated whenever you bin your patterns using To summarize: It is crucial when obtaining projection centers in the EMsoft convention, otherwise it only serves as metadata. |
Beta Was this translation helpful? Give feedback.
Yes, the binning parameter only stores information, it is not used to inform any pattern processing or similar operations. The only calculation where it is used is in the conversion of the internal (Bruker) projection center values to the EMsoft convention using EBSDDetector.pc_emsoft(). It is also updated whenever you bin your patterns using
downsample()
orrebin()
.To summarize: It is crucial when obtaining projection centers in the EMsoft convention, otherwise it only serves as metadata.