From 8f76295bb5bb0e6536a92c1c5e918a20985f1838 Mon Sep 17 00:00:00 2001 From: CaoWangrenbo Date: Tue, 28 Oct 2025 11:12:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B3=A8=E9=87=8A=E6=8E=89=E6=A0=87?= =?UTF-8?q?=E6=B3=A8=E9=A1=B5=E9=9D=A2=E5=8A=A0=E8=BD=BD=E5=9B=BE=E5=83=8F?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E6=97=A0=E6=95=88=E5=85=83=E7=B4=A0id?= =?UTF-8?q?=E7=9A=84=E9=83=A8=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/manual_annotation.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/templates/manual_annotation.html b/templates/manual_annotation.html index 44a5300..9dc0db7 100644 --- a/templates/manual_annotation.html +++ b/templates/manual_annotation.html @@ -469,10 +469,10 @@ currentImageData = image; - // 显示图像信息 - document.getElementById('image-id').textContent = image.id; - document.getElementById('image-timestamp').textContent = new Date(image.timestamp * 1000).toISOString(); - document.getElementById('image-comment').textContent = image.comment || '无'; + // // 显示图像信息 + // document.getElementById('image-id').textContent = image.id; + // document.getElementById('image-timestamp').textContent = new Date(image.timestamp * 1000).toISOString(); + // document.getElementById('image-comment').textContent = image.comment || '无'; // 根据 side 参数决定加载哪一侧的图像 const imagePath = side === 'left' @@ -483,8 +483,8 @@ ? `左摄像头图像:${image.left_filename}` : `右摄像头图像:${image.right_filename}`; - // 更新图像信息显示 - document.querySelector('.info-panel h3').textContent = imageInfo; + // // 更新图像信息显示 + // document.querySelector('.info-panel h3').textContent = imageInfo; // 加载图像到画布 fabric.Image.fromURL(imagePath, function (img) {