From 44eaa8d88b76c25dceca4c26fdc2c545c7f9fd5a Mon Sep 17 00:00:00 2001 From: mitchellgoffpc Date: Mon, 11 Apr 2022 16:33:24 -0700 Subject: [PATCH] CALMODEL frame is dead old-commit-hash: 25fdc95ea86d79dbc73edff1a5ad741005cbd0ef --- common/transformations/model.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/common/transformations/model.py b/common/transformations/model.py index 5d6458fad3..62eb86423b 100644 --- a/common/transformations/model.py +++ b/common/transformations/model.py @@ -42,18 +42,6 @@ medmodel_intrinsics = np.array([ [0.0, 0.0, 1.0]]) -# CAL model -CALMODEL_INPUT_SIZE = (512, 256) -CALMODEL_YUV_SIZE = (CALMODEL_INPUT_SIZE[0], CALMODEL_INPUT_SIZE[1] * 3 // 2) -CALMODEL_CY = 47.6 - -calmodel_fl = 606.7 -calmodel_intrinsics = np.array([ - [calmodel_fl, 0.0, 0.5 * CALMODEL_INPUT_SIZE[0]], - [0.0, calmodel_fl, CALMODEL_CY], - [0.0, 0.0, 1.0]]) - - # BIG model BIGMODEL_INPUT_SIZE = (1024, 512) BIGMODEL_YUV_SIZE = (BIGMODEL_INPUT_SIZE[0], BIGMODEL_INPUT_SIZE[1] * 3 // 2)