Commit 0630471a authored by Andrey Filippov's avatar Andrey Filippov

more cuas debugging

parent 278bb738
......@@ -4440,7 +4440,12 @@ public class OpticalFlow {
}
// read DSI_MAIN
double [][] dsi = quadCLT_ref.readDsiMain();
quadCLT_ref.setDSI(dsi); // was not here! (11/26/2022)
if (dsi != null) {
quadCLT_ref.setDSI(dsi); // was not here! (11/26/2022)
} else {
quadCLT_ref.readComboDSI(true);
dsi = quadCLT_ref.dsi;
}
double [][] combo_dsi = null;
if (dsi[TwoQuadCLT.DSI_SPREAD_AUX] == null) {
System.out.println("DSI_MAIN file has old format and does not have spread data, will recalculate.");
......
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