Commit b7cd20d7 authored by Andrey Filippov's avatar Andrey Filippov

More tracking stage 1 scores

parent 29ff9963
......@@ -72,7 +72,7 @@ public class CuasMotionLMA {
public static final int RSLT_ITERS = 10;
public static final int RSLT_CENTERED=11; //1: this target was evaluated in centered mode, 0 - was in non-centered, -1 - consumed in non-centered
// add
public static final int RSLT_BOOST= 12; // target accumulated with boosted "exposure time" (based scaled this)
public static final int RSLT_EBOOST= 12; // target accumulated with boosted "exposure time" (based scaled this)
public static final int RSLT_CENT_X = 13;
public static final int RSLT_CENT_Y = 14;
public static final int RSLT_CENT_MX= 15;
......@@ -133,7 +133,9 @@ public class CuasMotionLMA {
public static final int RSLT_PHASE1_AMP = 69; // target index in phase 1 (to set minimal score for phase 1) - debug feature
public static final int RSLT_PHASE1_MSCORE = 70; // target index in phase 1 (to set minimal score for phase 1) - debug feature
public static final int RSLT_PHASE1_VSTR = 71; // target index in phase 1 (to set minimal score for phase 1) - debug feature
public static final int RSLT_LEN = RSLT_PHASE1_VSTR + 1;
public static final int RSLT_PHASE1_VBOOST = 72; // target index in phase 1 (to set minimal score for phase 1) - debug feature
public static final int RSLT_PHASE1_EBOOST = 73; // target index in phase 1 (to set minimal score for phase 1) - debug feature
public static final int RSLT_LEN = RSLT_PHASE1_EBOOST + 1;
public static final String [] LMA_TITLES =
{"X-OFFS","Y-OFFS", "AMPLITUDE", "RADIUS","RAD_POS", "OVERSHOOT","OFFSET","RMSE","RMSE/A","MAX2A","ITERATIONS",
......@@ -153,7 +155,8 @@ public class CuasMotionLMA {
"segment-length","segment-disparity","segment_disp-diff", "segment-strength", "segment-range",
"FLOG-px","FLOG-pY","FLOG-DISP","FLOG-range","infinity",
"GTarget-ID","Vel-away", "Vel-right", "Vel-up","Range-linear",
"Phase1-index","Phase1-score","Phase1-amplitude","Phase1-mscore","Phase1-vstr"};
"Phase1-index","Phase1-score","Phase1-amplitude","Phase1-mscore","Phase1-vstr",
"Phase1-vboost", "Phase1-exp_boost"};
public static final String EXTRA_SLICE_DISCARD_ON_LOAD = "Targets";
public static final int FAIL_PENDING = -1; // By Claude on 05/07/2026: motion sentinel — tile tracked but not yet processed by LMA
public static final int FAIL_NONE = 0;
......
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