Electron Backscattered Diffraction (EBSD) Image Analysis is a software developed using PyQt5, for EBSD Analysis.
This software is developed for Scientific Purpose.
EBSD package developed with utility functions for each process of ebsd such as grain segmentation and generating kernel average misorientaion, dislocation density, grain reference reference orientation deviation, inverse pole figure, pole figure maps.
- Cross platform
- Various Segmentation Methods(KAM Based, Watershed)
- Interactive Grain Selection plots
- Inverse Pole Figure and Pole Figure Maps
- Grain Reference Orientation Deviation, Dislocation Density
- Exportable csv file for Grain Details
I learned to device various algorithms for solving problems in generating EBSD maps along side learning to work with a completely new platform, PyQt5 from scratch.
Also learned Crystallography and Mathematics behind it.
-
Speed up many time consuming algorithms
Just-In-Time (JIT)
compiler offered by NUMBA was used -
Also GPU programming with CUDA package in NUMBA using Python to improve faster execution of algorithms in large image data sets.
Clone the project
git clone https://github.com/harini-ht/ebsd
Go to the project directory
To run the exe file of the app:
- The dist folder contains
EBSD Analysis.exe
file which is a standalone executable file.
To run the app in a Python IDE/Code Editor:
- Install dependencies
pip install -r requirements.txt
- Run the main file
python -u main.py
from ebsd import *
import matplotlib.pyplot as plt
fname = 'Data.ctf'
Eulers, data10, cols, rows, xstep, ystep, title = read_data(fname)
image = rgb_img(Eulers)
plt.imshow(image)
- Dr. Anish Kumar
- Dr. Vani Shankar