camstreamerlib 4.0.20 → 4.0.21-3e06ab5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -38,6 +38,7 @@ export declare class PlaneTrackerAPI<Client extends IClient<TResponse, any>> ext
38
38
  cameraCalibrationProcessConfig: {
39
39
  nightSkyCalibrationEnabled: boolean;
40
40
  scheduleNightSkyCalibrationTimestamp: number;
41
+ nightSkyCalibrationFocusValue: number;
41
42
  focusCalibrationPoints: string;
42
43
  };
43
44
  cameraConfig: {
@@ -163,6 +164,10 @@ export declare class PlaneTrackerAPI<Client extends IClient<TResponse, any>> ext
163
164
  tiltTransformationCoefA: number;
164
165
  tiltCameraKnownPoint: number;
165
166
  tiltRealKnownPoint: number;
167
+ calibrationParamA: number;
168
+ calibrationParamB: number;
169
+ calibrationParamC: number;
170
+ calibrationParamD: number;
166
171
  panErrorCorrection: {
167
172
  cameraPan: number;
168
173
  realPan: number;
@@ -113,14 +113,17 @@ export declare const cameraSettingsSchema: z.ZodObject<{
113
113
  cameraCalibrationProcessConfig: z.ZodDefault<z.ZodObject<{
114
114
  nightSkyCalibrationEnabled: z.ZodBoolean;
115
115
  scheduleNightSkyCalibrationTimestamp: z.ZodNumber;
116
+ nightSkyCalibrationFocusValue: z.ZodDefault<z.ZodNumber>;
116
117
  focusCalibrationPoints: z.ZodDefault<z.ZodString>;
117
118
  }, "strip", z.ZodTypeAny, {
118
119
  nightSkyCalibrationEnabled: boolean;
119
120
  scheduleNightSkyCalibrationTimestamp: number;
121
+ nightSkyCalibrationFocusValue: number;
120
122
  focusCalibrationPoints: string;
121
123
  }, {
122
124
  nightSkyCalibrationEnabled: boolean;
123
125
  scheduleNightSkyCalibrationTimestamp: number;
126
+ nightSkyCalibrationFocusValue?: number | undefined;
124
127
  focusCalibrationPoints?: string | undefined;
125
128
  }>>;
126
129
  cameraConfig: z.ZodDefault<z.ZodObject<{
@@ -445,6 +448,7 @@ export declare const cameraSettingsSchema: z.ZodObject<{
445
448
  cameraCalibrationProcessConfig: {
446
449
  nightSkyCalibrationEnabled: boolean;
447
450
  scheduleNightSkyCalibrationTimestamp: number;
451
+ nightSkyCalibrationFocusValue: number;
448
452
  focusCalibrationPoints: string;
449
453
  };
450
454
  cameraConfig: {
@@ -576,6 +580,7 @@ export declare const cameraSettingsSchema: z.ZodObject<{
576
580
  cameraCalibrationProcessConfig?: {
577
581
  nightSkyCalibrationEnabled: boolean;
578
582
  scheduleNightSkyCalibrationTimestamp: number;
583
+ nightSkyCalibrationFocusValue?: number | undefined;
579
584
  focusCalibrationPoints?: string | undefined;
580
585
  } | undefined;
581
586
  cameraConfig?: {
@@ -701,6 +706,10 @@ export declare const serverSettingsSchema: z.ZodObject<{
701
706
  tiltTransformationCoefA: z.ZodNumber;
702
707
  tiltCameraKnownPoint: z.ZodNumber;
703
708
  tiltRealKnownPoint: z.ZodNumber;
709
+ calibrationParamA: z.ZodDefault<z.ZodNumber>;
710
+ calibrationParamB: z.ZodDefault<z.ZodNumber>;
711
+ calibrationParamC: z.ZodDefault<z.ZodNumber>;
712
+ calibrationParamD: z.ZodDefault<z.ZodNumber>;
704
713
  panErrorCorrection: z.ZodDefault<z.ZodArray<z.ZodObject<{
705
714
  cameraPan: z.ZodNumber;
706
715
  realPan: z.ZodNumber;
@@ -722,6 +731,10 @@ export declare const serverSettingsSchema: z.ZodObject<{
722
731
  tiltTransformationCoefA: number;
723
732
  tiltCameraKnownPoint: number;
724
733
  tiltRealKnownPoint: number;
734
+ calibrationParamA: number;
735
+ calibrationParamB: number;
736
+ calibrationParamC: number;
737
+ calibrationParamD: number;
725
738
  panErrorCorrection: {
726
739
  cameraPan: number;
727
740
  realPan: number;
@@ -737,6 +750,10 @@ export declare const serverSettingsSchema: z.ZodObject<{
737
750
  tiltTransformationCoefA: number;
738
751
  tiltCameraKnownPoint: number;
739
752
  tiltRealKnownPoint: number;
753
+ calibrationParamA?: number | undefined;
754
+ calibrationParamB?: number | undefined;
755
+ calibrationParamC?: number | undefined;
756
+ calibrationParamD?: number | undefined;
740
757
  panErrorCorrection?: {
741
758
  cameraPan: number;
742
759
  realPan: number;
@@ -754,6 +771,10 @@ export declare const serverSettingsSchema: z.ZodObject<{
754
771
  tiltTransformationCoefA: number;
755
772
  tiltCameraKnownPoint: number;
756
773
  tiltRealKnownPoint: number;
774
+ calibrationParamA: number;
775
+ calibrationParamB: number;
776
+ calibrationParamC: number;
777
+ calibrationParamD: number;
757
778
  panErrorCorrection: {
758
779
  cameraPan: number;
759
780
  realPan: number;
@@ -771,6 +792,10 @@ export declare const serverSettingsSchema: z.ZodObject<{
771
792
  tiltTransformationCoefA: number;
772
793
  tiltCameraKnownPoint: number;
773
794
  tiltRealKnownPoint: number;
795
+ calibrationParamA?: number | undefined;
796
+ calibrationParamB?: number | undefined;
797
+ calibrationParamC?: number | undefined;
798
+ calibrationParamD?: number | undefined;
774
799
  panErrorCorrection?: {
775
800
  cameraPan: number;
776
801
  realPan: number;
@@ -72,11 +72,13 @@ exports.cameraSettingsSchema = zod_1.z.object({
72
72
  .object({
73
73
  nightSkyCalibrationEnabled: zod_1.z.boolean(),
74
74
  scheduleNightSkyCalibrationTimestamp: zod_1.z.number(),
75
+ nightSkyCalibrationFocusValue: zod_1.z.number().int().min(1).max(9999).default(9000),
75
76
  focusCalibrationPoints: zod_1.z.string().default(''),
76
77
  })
77
78
  .default({
78
79
  nightSkyCalibrationEnabled: false,
79
80
  scheduleNightSkyCalibrationTimestamp: 0,
81
+ nightSkyCalibrationFocusValue: 9000,
80
82
  focusCalibrationPoints: '',
81
83
  }),
82
84
  cameraConfig: zod_1.z
@@ -259,6 +261,10 @@ exports.serverSettingsSchema = zod_1.z.object({
259
261
  tiltTransformationCoefA: zod_1.z.number(),
260
262
  tiltCameraKnownPoint: zod_1.z.number(),
261
263
  tiltRealKnownPoint: zod_1.z.number(),
264
+ calibrationParamA: zod_1.z.number().default(0),
265
+ calibrationParamB: zod_1.z.number().default(0),
266
+ calibrationParamC: zod_1.z.number().default(0),
267
+ calibrationParamD: zod_1.z.number().default(0),
262
268
  panErrorCorrection: zod_1.z
263
269
  .array(zod_1.z.object({
264
270
  cameraPan: zod_1.z.number(),
@@ -277,6 +283,10 @@ exports.serverSettingsSchema = zod_1.z.object({
277
283
  tiltTransformationCoefA: 1.0,
278
284
  tiltCameraKnownPoint: 90,
279
285
  tiltRealKnownPoint: 90,
286
+ calibrationParamA: 0,
287
+ calibrationParamB: 0,
288
+ calibrationParamC: 0,
289
+ calibrationParamD: 0,
280
290
  panErrorCorrection: [],
281
291
  }),
282
292
  });
@@ -69,11 +69,13 @@ export const cameraSettingsSchema = z.object({
69
69
  .object({
70
70
  nightSkyCalibrationEnabled: z.boolean(),
71
71
  scheduleNightSkyCalibrationTimestamp: z.number(),
72
+ nightSkyCalibrationFocusValue: z.number().int().min(1).max(9999).default(9000),
72
73
  focusCalibrationPoints: z.string().default(''),
73
74
  })
74
75
  .default({
75
76
  nightSkyCalibrationEnabled: false,
76
77
  scheduleNightSkyCalibrationTimestamp: 0,
78
+ nightSkyCalibrationFocusValue: 9000,
77
79
  focusCalibrationPoints: '',
78
80
  }),
79
81
  cameraConfig: z
@@ -256,6 +258,10 @@ export const serverSettingsSchema = z.object({
256
258
  tiltTransformationCoefA: z.number(),
257
259
  tiltCameraKnownPoint: z.number(),
258
260
  tiltRealKnownPoint: z.number(),
261
+ calibrationParamA: z.number().default(0),
262
+ calibrationParamB: z.number().default(0),
263
+ calibrationParamC: z.number().default(0),
264
+ calibrationParamD: z.number().default(0),
259
265
  panErrorCorrection: z
260
266
  .array(z.object({
261
267
  cameraPan: z.number(),
@@ -274,6 +280,10 @@ export const serverSettingsSchema = z.object({
274
280
  tiltTransformationCoefA: 1.0,
275
281
  tiltCameraKnownPoint: 90,
276
282
  tiltRealKnownPoint: 90,
283
+ calibrationParamA: 0,
284
+ calibrationParamB: 0,
285
+ calibrationParamC: 0,
286
+ calibrationParamD: 0,
277
287
  panErrorCorrection: [],
278
288
  }),
279
289
  });
package/package.json CHANGED
@@ -1,110 +1,110 @@
1
1
  {
2
- "name": "camstreamerlib",
3
- "version": "4.0.20",
4
- "description": "Helper library for CamStreamer ACAP applications.",
5
- "prettier": "@camstreamer/prettier-config",
6
- "engine": {
7
- "node": ">=18.0.0"
2
+ "name": "camstreamerlib",
3
+ "version": "4.0.21-3e06ab5",
4
+ "description": "Helper library for CamStreamer ACAP applications.",
5
+ "prettier": "@camstreamer/prettier-config",
6
+ "engine": {
7
+ "node": ">=18.0.0"
8
+ },
9
+ "dependencies": {
10
+ "adm-zip": "^0.5.9",
11
+ "eventemitter2": "^5.0.1",
12
+ "fast-xml-parser": "^5.3.6",
13
+ "type-fest": "^4.41.0",
14
+ "undici": "^6.21.3",
15
+ "ws": "^8.18.0",
16
+ "zod": "^3.25.76"
17
+ },
18
+ "devDependencies": {
19
+ "@camstreamer/eslint-config": "^1.0.2",
20
+ "@camstreamer/prettier-config": "^2.0.4",
21
+ "@types/adm-zip": "^0.5.5",
22
+ "@types/jest": "^28.0.0",
23
+ "@types/node": "^18.19.127",
24
+ "@types/ws": "^8.5.10",
25
+ "@typescript-eslint/eslint-plugin": "^6.8.0",
26
+ "@typescript-eslint/parser": "^6.8.0",
27
+ "eslint": "^8.51.0",
28
+ "eslint-plugin-deprecation": "^2.0.0",
29
+ "eslint-plugin-unused-imports": "^3.0.0",
30
+ "jest": "^28.1.3",
31
+ "npm-run-all": "^4.1.5",
32
+ "prettier": "^2.7.1",
33
+ "ts-jest": "^28.0.0",
34
+ "ts-node": "^10.7.0",
35
+ "typescript": "5.3.3"
36
+ },
37
+ "overrides": {
38
+ "js-yaml": "^4.2.0"
39
+ },
40
+ "scripts": {
41
+ "clean": "rimraf dist/*",
42
+ "build": "npm-run-all clean build:cjs build:esm copyPackage",
43
+ "build:cjs": "tsc --project tsconfig.cjs.json",
44
+ "build:esm": "tsc --project tsconfig.esm.json",
45
+ "copyPackage": "cp -f LICENSE dist/ && cp -f README.md dist/ && cp -f package.json dist/",
46
+ "publishPackage": "./publish.sh",
47
+ "lint": "eslint \"src/**/*.ts\"",
48
+ "lint:fix": "eslint \"src/**/*.ts\" --fix",
49
+ "pretty": "prettier --write \"./{{src,doc}/**/*.{ts,tsx,md},README.md}\"",
50
+ "pretty:check": "prettier --check \"./{{src,doc}/**/*.{ts,tsx,md},README.md}\"",
51
+ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
52
+ "audit": "npm audit --audit-level=high"
53
+ },
54
+ "files": [
55
+ "/**/*.js",
56
+ "/**/*.ts"
57
+ ],
58
+ "main": "./cjs/index.js",
59
+ "module": "./esm/index.js",
60
+ "types": "types/index.d.ts",
61
+ "exports": {
62
+ ".": {
63
+ "import": "./esm/index.js",
64
+ "require": "./cjs/index.js",
65
+ "types": "./types/index.d.ts"
8
66
  },
9
- "dependencies": {
10
- "adm-zip": "^0.5.9",
11
- "eventemitter2": "^5.0.1",
12
- "fast-xml-parser": "^5.3.6",
13
- "type-fest": "^4.41.0",
14
- "undici": "^6.21.3",
15
- "ws": "^8.18.0",
16
- "zod": "^3.25.76"
67
+ "./web": {
68
+ "import": "./esm/web/index.js",
69
+ "require": "./cjs/web/index.js",
70
+ "types": "./types/web/index.d.ts"
17
71
  },
18
- "devDependencies": {
19
- "@camstreamer/eslint-config": "^1.0.2",
20
- "@camstreamer/prettier-config": "^2.0.4",
21
- "@types/adm-zip": "^0.5.5",
22
- "@types/jest": "^28.0.0",
23
- "@types/node": "^18.19.127",
24
- "@types/ws": "^8.5.10",
25
- "@typescript-eslint/eslint-plugin": "^6.8.0",
26
- "@typescript-eslint/parser": "^6.8.0",
27
- "eslint": "^8.51.0",
28
- "eslint-plugin-deprecation": "^2.0.0",
29
- "eslint-plugin-unused-imports": "^3.0.0",
30
- "jest": "^28.1.3",
31
- "npm-run-all": "^4.1.5",
32
- "prettier": "^2.7.1",
33
- "ts-jest": "^28.0.0",
34
- "ts-node": "^10.7.0",
35
- "typescript": "5.3.3"
72
+ "./node": {
73
+ "import": "./esm/node/index.js",
74
+ "require": "./cjs/node/index.js",
75
+ "types": "./types/node/index.d.ts"
36
76
  },
37
- "overrides": {
38
- "js-yaml": "^4.2.0"
77
+ "./cjs/index": {
78
+ "import": "./esm/index.js",
79
+ "require": "./cjs/index.js",
80
+ "types": "./types/index.d.ts"
39
81
  },
40
- "scripts": {
41
- "clean": "rimraf dist/*",
42
- "build": "npm-run-all clean build:cjs build:esm copyPackage",
43
- "build:cjs": "tsc --project tsconfig.cjs.json",
44
- "build:esm": "tsc --project tsconfig.esm.json",
45
- "copyPackage": "cp -f LICENSE dist/ && cp -f README.md dist/ && cp -f package.json dist/",
46
- "publishPackage": "./publish.sh",
47
- "lint": "eslint \"src/**/*.ts\"",
48
- "lint:fix": "eslint \"src/**/*.ts\" --fix",
49
- "pretty": "prettier --write \"./{{src,doc}/**/*.{ts,tsx,md},README.md}\"",
50
- "pretty:check": "prettier --check \"./{{src,doc}/**/*.{ts,tsx,md},README.md}\"",
51
- "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
52
- "audit": "npm audit --audit-level=high"
82
+ "./cjs/node": {
83
+ "import": "./esm/node/index.js",
84
+ "require": "./cjs/node/index.js",
85
+ "types": "./types/node/index.js"
53
86
  },
54
- "files": [
55
- "/**/*.js",
56
- "/**/*.ts"
57
- ],
58
- "main": "./cjs/index.js",
59
- "module": "./esm/index.js",
60
- "types": "types/index.d.ts",
61
- "exports": {
62
- ".": {
63
- "import": "./esm/index.js",
64
- "require": "./cjs/index.js",
65
- "types": "./types/index.d.ts"
66
- },
67
- "./web": {
68
- "import": "./esm/web/index.js",
69
- "require": "./cjs/web/index.js",
70
- "types": "./types/web/index.d.ts"
71
- },
72
- "./node": {
73
- "import": "./esm/node/index.js",
74
- "require": "./cjs/node/index.js",
75
- "types": "./types/node/index.d.ts"
76
- },
77
- "./cjs/index": {
78
- "import": "./esm/index.js",
79
- "require": "./cjs/index.js",
80
- "types": "./types/index.d.ts"
81
- },
82
- "./cjs/node": {
83
- "import": "./esm/node/index.js",
84
- "require": "./cjs/node/index.js",
85
- "types": "./types/node/index.js"
86
- },
87
- "./cjs/node/index": {
88
- "import": "./esm/node/index.js",
89
- "require": "./cjs/node/index.js",
90
- "types": "./types/node/index.js"
91
- }
92
- },
93
- "repository": {
94
- "type": "git",
95
- "url": "git+https://github.com/CamStreamer/CamStreamerLib.git"
96
- },
97
- "keywords": [
98
- "CamStreamer",
99
- "CamOverlay",
100
- "CamScripter",
101
- "Camera",
102
- "Axis"
103
- ],
104
- "author": "CamStreamer s.r.o",
105
- "license": "ISC",
106
- "bugs": {
107
- "url": "https://github.com/CamStreamer/CamStreamerLib/issues"
108
- },
109
- "homepage": "https://github.com/CamStreamer/CamStreamerLib#readme"
87
+ "./cjs/node/index": {
88
+ "import": "./esm/node/index.js",
89
+ "require": "./cjs/node/index.js",
90
+ "types": "./types/node/index.js"
91
+ }
92
+ },
93
+ "repository": {
94
+ "type": "git",
95
+ "url": "git+https://github.com/CamStreamer/CamStreamerLib.git"
96
+ },
97
+ "keywords": [
98
+ "CamStreamer",
99
+ "CamOverlay",
100
+ "CamScripter",
101
+ "Camera",
102
+ "Axis"
103
+ ],
104
+ "author": "CamStreamer s.r.o",
105
+ "license": "ISC",
106
+ "bugs": {
107
+ "url": "https://github.com/CamStreamer/CamStreamerLib/issues"
108
+ },
109
+ "homepage": "https://github.com/CamStreamer/CamStreamerLib#readme"
110
110
  }
@@ -38,6 +38,7 @@ export declare class PlaneTrackerAPI<Client extends IClient<TResponse, any>> ext
38
38
  cameraCalibrationProcessConfig: {
39
39
  nightSkyCalibrationEnabled: boolean;
40
40
  scheduleNightSkyCalibrationTimestamp: number;
41
+ nightSkyCalibrationFocusValue: number;
41
42
  focusCalibrationPoints: string;
42
43
  };
43
44
  cameraConfig: {
@@ -163,6 +164,10 @@ export declare class PlaneTrackerAPI<Client extends IClient<TResponse, any>> ext
163
164
  tiltTransformationCoefA: number;
164
165
  tiltCameraKnownPoint: number;
165
166
  tiltRealKnownPoint: number;
167
+ calibrationParamA: number;
168
+ calibrationParamB: number;
169
+ calibrationParamC: number;
170
+ calibrationParamD: number;
166
171
  panErrorCorrection: {
167
172
  cameraPan: number;
168
173
  realPan: number;
@@ -113,14 +113,17 @@ export declare const cameraSettingsSchema: z.ZodObject<{
113
113
  cameraCalibrationProcessConfig: z.ZodDefault<z.ZodObject<{
114
114
  nightSkyCalibrationEnabled: z.ZodBoolean;
115
115
  scheduleNightSkyCalibrationTimestamp: z.ZodNumber;
116
+ nightSkyCalibrationFocusValue: z.ZodDefault<z.ZodNumber>;
116
117
  focusCalibrationPoints: z.ZodDefault<z.ZodString>;
117
118
  }, "strip", z.ZodTypeAny, {
118
119
  nightSkyCalibrationEnabled: boolean;
119
120
  scheduleNightSkyCalibrationTimestamp: number;
121
+ nightSkyCalibrationFocusValue: number;
120
122
  focusCalibrationPoints: string;
121
123
  }, {
122
124
  nightSkyCalibrationEnabled: boolean;
123
125
  scheduleNightSkyCalibrationTimestamp: number;
126
+ nightSkyCalibrationFocusValue?: number | undefined;
124
127
  focusCalibrationPoints?: string | undefined;
125
128
  }>>;
126
129
  cameraConfig: z.ZodDefault<z.ZodObject<{
@@ -445,6 +448,7 @@ export declare const cameraSettingsSchema: z.ZodObject<{
445
448
  cameraCalibrationProcessConfig: {
446
449
  nightSkyCalibrationEnabled: boolean;
447
450
  scheduleNightSkyCalibrationTimestamp: number;
451
+ nightSkyCalibrationFocusValue: number;
448
452
  focusCalibrationPoints: string;
449
453
  };
450
454
  cameraConfig: {
@@ -576,6 +580,7 @@ export declare const cameraSettingsSchema: z.ZodObject<{
576
580
  cameraCalibrationProcessConfig?: {
577
581
  nightSkyCalibrationEnabled: boolean;
578
582
  scheduleNightSkyCalibrationTimestamp: number;
583
+ nightSkyCalibrationFocusValue?: number | undefined;
579
584
  focusCalibrationPoints?: string | undefined;
580
585
  } | undefined;
581
586
  cameraConfig?: {
@@ -701,6 +706,10 @@ export declare const serverSettingsSchema: z.ZodObject<{
701
706
  tiltTransformationCoefA: z.ZodNumber;
702
707
  tiltCameraKnownPoint: z.ZodNumber;
703
708
  tiltRealKnownPoint: z.ZodNumber;
709
+ calibrationParamA: z.ZodDefault<z.ZodNumber>;
710
+ calibrationParamB: z.ZodDefault<z.ZodNumber>;
711
+ calibrationParamC: z.ZodDefault<z.ZodNumber>;
712
+ calibrationParamD: z.ZodDefault<z.ZodNumber>;
704
713
  panErrorCorrection: z.ZodDefault<z.ZodArray<z.ZodObject<{
705
714
  cameraPan: z.ZodNumber;
706
715
  realPan: z.ZodNumber;
@@ -722,6 +731,10 @@ export declare const serverSettingsSchema: z.ZodObject<{
722
731
  tiltTransformationCoefA: number;
723
732
  tiltCameraKnownPoint: number;
724
733
  tiltRealKnownPoint: number;
734
+ calibrationParamA: number;
735
+ calibrationParamB: number;
736
+ calibrationParamC: number;
737
+ calibrationParamD: number;
725
738
  panErrorCorrection: {
726
739
  cameraPan: number;
727
740
  realPan: number;
@@ -737,6 +750,10 @@ export declare const serverSettingsSchema: z.ZodObject<{
737
750
  tiltTransformationCoefA: number;
738
751
  tiltCameraKnownPoint: number;
739
752
  tiltRealKnownPoint: number;
753
+ calibrationParamA?: number | undefined;
754
+ calibrationParamB?: number | undefined;
755
+ calibrationParamC?: number | undefined;
756
+ calibrationParamD?: number | undefined;
740
757
  panErrorCorrection?: {
741
758
  cameraPan: number;
742
759
  realPan: number;
@@ -754,6 +771,10 @@ export declare const serverSettingsSchema: z.ZodObject<{
754
771
  tiltTransformationCoefA: number;
755
772
  tiltCameraKnownPoint: number;
756
773
  tiltRealKnownPoint: number;
774
+ calibrationParamA: number;
775
+ calibrationParamB: number;
776
+ calibrationParamC: number;
777
+ calibrationParamD: number;
757
778
  panErrorCorrection: {
758
779
  cameraPan: number;
759
780
  realPan: number;
@@ -771,6 +792,10 @@ export declare const serverSettingsSchema: z.ZodObject<{
771
792
  tiltTransformationCoefA: number;
772
793
  tiltCameraKnownPoint: number;
773
794
  tiltRealKnownPoint: number;
795
+ calibrationParamA?: number | undefined;
796
+ calibrationParamB?: number | undefined;
797
+ calibrationParamC?: number | undefined;
798
+ calibrationParamD?: number | undefined;
774
799
  panErrorCorrection?: {
775
800
  cameraPan: number;
776
801
  realPan: number;