Viljar Femoen
Viljar Femoen
I started working on adding point and text markers: https://github.com/viljarjf/pyxem/commit/819b477a529a51aa62d2ccd6597bf72090999c26 Something like `MarkerCombinations` would be nice for annotated reflections, my current implementation just re-uses the coordinates for point and text...
@ericpre Certainly! ~~~python from hyperspy import api as hs import numpy as np data = np.arange(100).reshape((2, 2, 5, 5)) signal = hs.signals.Signal2D(data) signal.plot() offset = [[3, 3], ] raw_text =...
I am wondering how the new azimuthal integral affects the template correlation. The old polar transform kept the original intensity of the pixels, whereas the new transform keeps the total...
I did some testing now, the new polar unwrapping is $90^\circ$ out of phase with the old, making the in-plane angle $90^\circ$ off from previous results. This comes from the...
It seems to me from the [docs](https://pyxem.readthedocs.io/en/stable/tutorials/pyxem-demos/13%20Conventions.html), that the old in-plane angle was measured from $X_L$, whereas the new is measured from $-Y_L$. But as the plots illustrate, the actual...
@CSSFrancis Fixing the 90 degree difference is easy to do when translating the index returned by `_mixed_matching_lib_to_polar`, that shouldn't be a problem. Regarding changes to the public API, I think...
I have not looked into hyperspy 2.0 yet, lazy markers sound very useful for this kind of plotting! Currently the plot takes around 20 seconds to generate for me, which...
> Thank you, @viljarjf, for adding such a useful feature. > > I just want to point out that with #946 (due to #925) , `plot_template_over_pattern()` had to be changed...
I redid it with hyperspy 2.0 now, it made the code a lot easier and faster. Having a IPF as navigation space makes a lot of sense, I will try...
I haven't done anything in a while, there are a couple small bugs still but I can probably fix those and mark it as ready for review later today.