inference stats

This commit is contained in:
hofee 2024-11-03 02:15:42 +08:00
parent 82c260e420
commit dce8cdb2ff
3 changed files with 5 additions and 3 deletions

View File

@ -97,7 +97,7 @@ export default {
this.duplicated_frame = seqData.retry_duplication_pose;
this.error_frame = seqData.retry_no_pts_pose;
//this.model_pts = seqData.model_pts;
this.model_pts = seqData.model_pts;
},

View File

@ -205,8 +205,9 @@ export default {
geometry.setAttribute('position', new THREE.BufferAttribute(vertices, 3));
const material = new THREE.PointsMaterial({
size: 0.005,
size: 0.002,
color: color,
sizeAttenuation: true,
});
return new THREE.Points(geometry, material);

View File

@ -171,8 +171,9 @@ export default {
geometry.setAttribute('position', new THREE.BufferAttribute(vertices, 3));
const material = new THREE.PointsMaterial({
size: 0.005,
size: 0.002,
color: color,
sizeAttenuation: true,
});
return new THREE.Points(geometry, material);