// Tri-modal sensor-fusion panel from the NETRA deck. CONCEPT: this build runs
// RGB only — the RGB bar is the real detector confidence; thermal / 4D-radar /
// fused values are illustrative of the on-pole sensor-fusion vision.
export function SensorFusionThumbs({ confidence }) {
const rgb = Math.round(confidence);
const thermal = 91;
const radar = 88;
return (
);
}
export function SensorFusionBars({ confidence }) {
const rgb = Math.round(confidence); // real detector confidence, 0–100
const thermal = 91;
const radar = 88;
const fused = Math.min(98, Math.max(rgb + 12, 94));
return (
Sensor-fusion confidence
RGB fell to {(rgb / 100).toFixed(2)} in the rain — thermal and radar carried the detection, so the fused verdict held at {(fused / 100).toFixed(2)}. A single-camera system would have missed this.
);
}
function Thumb({ children, tag, tagBg, tagFg, tagBorder, met, metFg }) {
return (
);
}
function Bar({ label, value, color, strong }) {
return (
{label}
{(value / 100).toFixed(2)}
);
}