-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dealing with SEM/HAADF complementary data with their respective luminescence #73
Comments
The management of the different signals is taken care by the workflow: the python script or the notebook. In the case of the navigator, it would be worth considering improving support signal navigator if this is thought in a generic fashion and in a way that it doesn't too much burden to other functions. Maybe it is worth continuing this part of the discussion at hyperspy/hyperspy#2639? |
So you mean I should stick to keeping track of the changes in the navigation axis of the |
@jordiferrero - I understand your point. In principle it applies also for EELS and EDX data and might be of more general interest. Though in many cases the spectral maps will have a lower resolution than proper HAADF or SE images of the same region, and a direct linking of this data is of limited value. For example, our CL system does not record the SE signal in parallel. I usually have a corresponding SE image taken beforehand and the spectral image corresponds to only a ROI on that image. That SE image usually has a better resolution than the spectral image as I hardly ever use step sizes below 20 nm. The main issue I see with your approach is that quite a number of functions would need to be adapted directly in hyperspy (e.g. |
Indeed, there is room for improvement for the navigator and it would good to discuss how to improve it with others who are interested in this and this is why I put the link to the other issue! |
I have recently been wondering on what the best strategy would be to do the following:
All of my CL-SEM data always comes with SE images with it (I suppose for CL-TEM the equivalent would be a HAADF image). These SE images are acquired at the same time as the luminescence. However, they are not integrated with hyperspy at all.
While it is true that you can load the SE image separately (as
s
) and the use thiss
object asnavigation_axis
for thecl
object, this all needs to be done manually.What's worse is that when I do some processing on the
cl
object (e.g. crop or subindex some of the navigation axes) thes
SE image does not link with thecl
object in anyway.Ideally, i would like to link these 2 datasets together.
I have an idea to do that, but I wanted too quickly discuss the approach before I get into the coding.
One way would be to keep the SE image array in the metadata and, every time you apply a certain operation that modifies the navigation axis, then those changes are also applied to the SE metadata (e.g. crop pixels). Moreover, I would like to have an option when plotting where we can specify to use the SE image as navigation axis instead of the default "panchromatic".
Can you think of any better ways to implement such feature?
The text was updated successfully, but these errors were encountered: