From 414450c6e673d96f42372d823e6f8da2922e1483 Mon Sep 17 00:00:00 2001 From: nuknal Date: Fri, 11 Oct 2024 09:56:25 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=B8=E6=9C=BA=E5=81=8F=E7=BD=AE=E8=A7=92?= =?UTF-8?q?=E5=BA=A6-=E8=B7=9D=E7=A6=BB=E5=AF=B9=E5=BA=94=E5=85=B3?= =?UTF-8?q?=E7=B3=BB=E6=B5=8B=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/config.yaml | 4 ++-- pkg/calculator/camera.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/config.yaml b/config/config.yaml index d220b8a..00572f8 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -11,8 +11,8 @@ coregistration: fus_band_order: "RGB" radiation: - pan_remove_hf_noise: true - mss_remove_hf_noise: true + pan_remove_hf_noise: false + mss_remove_hf_noise: false hf_radius_ratio: 0.49 min_hist_level: 0.3 max_hist_level: 0.6 diff --git a/pkg/calculator/camera.go b/pkg/calculator/camera.go index 1a9d932..f2bead7 100644 --- a/pkg/calculator/camera.go +++ b/pkg/calculator/camera.go @@ -15,8 +15,8 @@ const ( PANCellSize = 3.2 // µm MSSPixels = float64(payload.MSS_PIXEL_WIDTH) MSSCellSize = 12.8 // µm - CameraRoll = -0.010 // 相机与卫星本体X轴的安装角度, degree FIXME: 安装矩阵应该由卫星方提供 - CameraPitch = 0.150 // 相机与卫星本体Y轴的安装角度, degree + CameraRoll = -0.010 // 相机与卫星本体X轴的安装角度, degree 速度方向左侧为正 + CameraPitch = 0.150 // 相机与卫星本体Y轴的安装角度, degree 0.1° -> 900m CameraYaw = 0.010 // 相机与卫星本体Z轴的安装角度, degree )