Hi All,
I’m trying to use python to export data from the FFT MTF analysis. I want to export data only up to 20 lp/mm, but when I try to do this, I only get a series out to 40 lp/mm. I also tried a different frequency above 40 lp/mm, and it only will output the data out to 40 lp/mm.
newWin = TheAnalyses.New_FftMtf()
newWin_settings = newWin.GetSettings()
newWin_settings.MaximumFrequency = 20
newWin_settings.SampleSize = ZOSAPI.Analysis.SampleSizes.S_128x128
newWin.ApplyAndWaitForCompletion()
newWin_Results = newWin.GetResults()
data = newWin_Results.GetDataSeries(1)
xRaw = data.XData.Data
x = np.array(tuple(xRaw))
print(x)
Does anyone know how to make it so that I only get data up to a specified frequency?
