Commit 7b0865f3 authored by Andrey Filippov's avatar Andrey Filippov

Recovering from failure in old resolution calculation

parent 317d623f
......@@ -6331,11 +6331,15 @@ if (debugLevel>=debugThreshold) System.out.println(i+" "+diff[0]+" "+diff[1]+" "
return sharpness;
}
public double [] getCenterResolutions(){
try {
double [] resolutions={
1.0/this.psfMetricses[this.indices[0]][this.indexR50Center], // red, r50% center
1.0/this.psfMetricses[this.indices[1]][this.indexR50Center], // green, r50% center
1.0/this.psfMetricses[this.indices[2]][this.indexR50Center]}; // blue, r50% center
return resolutions;
} catch (Exception e){
return null;
}
}
public double [][] getMetrics(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment