pyFAI/sandbox/bug_267.py

20 lines
505 B
Python

#!/usr/bin/env python
import sys
import numpy
import fabio
from pyFAI.calibration import calib, get_detector
from pyFAI.calibrant import get_calibrant
def calibration(img, calibrant_name, detector_name, wavelength):
calibrant = get_calibrant(calibrant_name)
calibrant.wavelength = wavelength
detector = get_detector(detector_name)
calib(img, calibrant, detector)
if __name__ == "__main__":
img = fabio.open(sys.argv[1]).data
print(sys.argv)
calibration(img, *sys.argv[2:])