X-Position
X-Position from Fotos. Kallibrierung
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
|
||||
const { calculate } = require('./calculateAngles.js');
|
||||
module.exports = { calculate };
|
||||
const { calculate, optimizeRobot } = require('./calculateAngles.js');
|
||||
module.exports = { calculate, optimizeRobot };
|
||||
|
||||
@@ -4,24 +4,127 @@
|
||||
* Browser + Server + Jest (CJS) kompatibel
|
||||
*/
|
||||
|
||||
function calculateXPos(listIdAndX, jsonRobot){
|
||||
const partsMovingFixedX = new Set(['Base', 'Arm1', 'Joint1']);
|
||||
const markersMovingFixedX = jsonRobot.Marker.filter(m => partsMovingFixedX.has(m.on));
|
||||
// Join: Robot-Marker ↔ Found-Marker
|
||||
|
||||
const markersListeWithRobotInfo = jsonRobot.Marker
|
||||
.filter(m => partsMovingFixedX.has(m.on)) // nur relevante Teile
|
||||
.map(m => {
|
||||
const found = listIdAndX.get(m.id);
|
||||
if (!found) return null;
|
||||
|
||||
return {
|
||||
id: m.id,
|
||||
relPos: m.relPos, // oder m.relPos, je nach Struktur
|
||||
position: found,
|
||||
Px: found[0] - m.relPos[0]
|
||||
};
|
||||
})
|
||||
.filter(Boolean); // nulls entfernen
|
||||
|
||||
const pxValues = markersListeWithRobotInfo.map(m => m.Px);
|
||||
const meanPx = pxValues.reduce((sum, x) => sum + x, 0) / pxValues.length;
|
||||
|
||||
const variancePx = pxValues.reduce((sum, x) => sum + Math.pow(x - meanPx, 2), 0) / pxValues.length;
|
||||
const stdDevPx = Math.sqrt(variancePx);
|
||||
|
||||
return { meanPx, stdDevPx };
|
||||
}
|
||||
|
||||
|
||||
function optimizeRobot(listFoundMarkers, jsonRobot) {
|
||||
|
||||
const map = new Map();
|
||||
|
||||
for (const foundMarkers of listFoundMarkers) {
|
||||
var x_222_226 = null;
|
||||
var x_222_226_count = 0;
|
||||
|
||||
for (const mark of foundMarkers.markers.filter(m => m.id === 226).map(f => [f.id, f.position_mm])) {
|
||||
x_222_226 = mark[1][0];
|
||||
x_222_226_count++;
|
||||
}
|
||||
if (x_222_226_count > 0) {
|
||||
x_222_226 = x_222_226 / x_222_226_count;
|
||||
}
|
||||
else{
|
||||
continue; // Wenn weder 222 noch 226 gefunden wurden, überspringen
|
||||
}
|
||||
|
||||
for (const mark of foundMarkers.markers.map(f => [f.id, f.position_mm ])){
|
||||
const id = mark[0];
|
||||
const dx_222_226 = mark[1][0] - x_222_226;
|
||||
if (!map.has(id)) {
|
||||
map.set(id, []); // Initialisiere mit x_222_226, damit wir später die Abweichung berechnen können
|
||||
}
|
||||
map.get(id).push(dx_222_226);
|
||||
}
|
||||
}
|
||||
|
||||
const result = Array.from(map, ([id, mm]) => ({ id, mm })).filter(m => [198,200,204,229,243].includes(m.id));
|
||||
|
||||
|
||||
const withStats = result.map(entry => {
|
||||
const { mm } = entry;
|
||||
const n = mm.length;
|
||||
|
||||
if (n === 0) {
|
||||
return {
|
||||
...entry,
|
||||
n: 0,
|
||||
average: null,
|
||||
deviation: null
|
||||
};
|
||||
}
|
||||
|
||||
const average = mm.reduce((a, b) => a + b, 0) / n;
|
||||
|
||||
const deviation = Math.sqrt(
|
||||
mm.reduce((sum, x) => sum + Math.pow(x - average, 2), 0) / n
|
||||
);
|
||||
|
||||
return {
|
||||
...entry,
|
||||
n,
|
||||
average,
|
||||
deviation
|
||||
};
|
||||
});
|
||||
|
||||
return withStats;
|
||||
}
|
||||
function calculateRotAngle(listIdAndX, jsonRobot, jointName){
|
||||
// Achse finden
|
||||
const jointInfo = jsonRobot.Joints[jointName];
|
||||
if(!jointInfo){return null, null; }
|
||||
if(jointInfo.type !== 'revolute'){ return null, null; }
|
||||
if(!(jointInfo.origin)){ return null, null; }
|
||||
if(!(jointInfo.axis)){ return null, null; }
|
||||
if(!(jointInfo.child)){ return null, null; }
|
||||
|
||||
markerUsed = jsonRobot.Marker.filter(m => m.on === jointInfo.child)
|
||||
if(markerUsed.length === 0){ return null, null; }
|
||||
|
||||
var markerFound = []
|
||||
for (const m of markerUsed){
|
||||
markerFound.push(listIdAndX.get(m.id));
|
||||
}
|
||||
|
||||
|
||||
var angle = 0;
|
||||
var varAngle = 0;
|
||||
|
||||
return angle, varAngle;
|
||||
}
|
||||
|
||||
function calculate(foundMarkers, jsonRobot) {
|
||||
// --- X of the Hand-Joint ---
|
||||
const validOns = new Set(['Base', 'Arm1', 'Joint1']);
|
||||
const foundById = new Map(foundMarkers.map(f => [f.id, f]));
|
||||
|
||||
const markersMovingFixedX = jsonRobot.Marker.filter(m => validOns.has(m.on));
|
||||
const markersXPosition = new Map();
|
||||
const foundById = new Map(foundMarkers.markers.map(f => [f.id, f.position_mm ]));
|
||||
const { meanPx: x, stdDevPx: varx } = calculateXPos(foundById, jsonRobot);
|
||||
|
||||
const xs = markersMovingFixedX
|
||||
.map(m => {
|
||||
const f = foundById.get(m.id);
|
||||
return f ? f.position[0] - m.relPos[0] : null;
|
||||
})
|
||||
.filter(x => x !== null);
|
||||
|
||||
const xAvg = xs.length
|
||||
? xs.reduce((a, b) => a + b, 0) / xs.length
|
||||
: 0;
|
||||
const { meanY: y, stdDevY: vary } = calculateRotAngle(foundById, jsonRobot, "jointB");
|
||||
|
||||
return {
|
||||
meta: {
|
||||
@@ -34,10 +137,11 @@ function calculate(foundMarkers, jsonRobot) {
|
||||
},
|
||||
status: 'ok',
|
||||
result: {
|
||||
xAvg
|
||||
x: x,
|
||||
varx: varx
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
module.exports = { calculate };
|
||||
module.exports = { calculate, optimizeRobot };
|
||||
@@ -2,7 +2,7 @@
|
||||
"Elements":["Board","Base","Arm1","Joint1","Arm2","Finger1","Finger2"],
|
||||
"Joints":{
|
||||
"jointA":{"name":"Slider", "type":"lninear", "axis":[1,0,0],"parent":"Board","child":"Base"},
|
||||
"jointB":{"name":"Shoulder","type":"revolute","axis":[1,0,0],"parent":"Base","child":"Arm1","origin":[-89.5, 115, 61]},
|
||||
"jointB":{"name":"Shoulder","type":"revolute","axis":[1,0,0],"parent":"Base","child":"Arm1","origin":[-89.5, 115, 53], "originSource":[null, "229_198_Foto_5_2026", "229_198_Foto_5_2026"]},
|
||||
"jointC":{"name":"EllbowLift","type":"revolute","axis":[1,0,0],"parent":"Arm1","child":"Joint1"},
|
||||
"jointD":{"name":"EllbowTwist","type":"revolute","axis":[0,1,0],"parent":"Joint1","child":"Arm2"}
|
||||
},
|
||||
@@ -15,13 +15,14 @@
|
||||
{"id":214,"on":"Board","position":[0.40, 0.0, 0.0]},
|
||||
{"id":215,"on":"Board","position":[0.20, -0.090, 0.0]},
|
||||
|
||||
{"id":200,"on":"Base","relPos":[-166, 6.5, 55]},
|
||||
{"id":201,"on":"Base","relPos":[-190, 97.5, 74.5]},
|
||||
{"id":200,"on":"Base","relPos":[-163.8, 6.5, 55], "relPosSource":["226_FotoAverage_5_2026",null,null]},
|
||||
{"id":201,"on":"Base","relPos":[-164.8, 97.5, 74.5], "relPosSource":["226_FotoAverage_5_2026",null,null]},
|
||||
{"id":204,"on":"Base","relPos":[-158.5,152.5,111]},
|
||||
|
||||
{"id":198,"on":"Arm1", "relPos":[-89.5,-160, 35]},
|
||||
{"id":229,"on":"Arm1", "relPos":[-89.5,-250, 35]},
|
||||
{"id":243,"on":"Arm1", "relPos":[-89.5,-285, 0]},
|
||||
{"id":198,"on":"Arm1", "relPos":[-93.4,-160, 35], "relPosSource":["226_FotoAverage_5_2026",null,null]},
|
||||
{"id":229,"on":"Arm1", "relPos":[-90.6,-250, 35], "relPosSource":["226_FotoAverage_5_2026",null,null]},
|
||||
{"id":242,"on":"Arm1", "relPos":[-89.5,-250,-35]},
|
||||
{"id":243,"on":"Arm1", "relPos":[-89.5,-285, 0]},
|
||||
|
||||
{"id":222,"on":"Joint1", "relPos":[0,0, -35]},
|
||||
{"id":226,"on":"Joint1", "relPos":[0,0, 35]},
|
||||
|
||||
Reference in New Issue
Block a user