-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmrcal-types.h
355 lines (298 loc) · 15.3 KB
/
mrcal-types.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
// Copyright (c) 2017-2023 California Institute of Technology ("Caltech"). U.S.
// Government sponsorship acknowledged. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
#pragma once
#include <stdint.h>
#include <stdbool.h>
#include "basic-geometry.h"
////////////////////////////////////////////////////////////////////////////////
//////////////////// Lens models
////////////////////////////////////////////////////////////////////////////////
// These are an "X macro": https://en.wikipedia.org/wiki/X_Macro
//
// The supported lens models and their parameter counts. Models with a
// configuration may have a dynamic parameter count; this is indicated here with
// a <0 value. These models report their parameter counts in the
// LENSMODEL_XXX__lensmodel_num_params() function, called by
// mrcal_lensmodel_num_params().
#define MRCAL_LENSMODEL_NOCONFIG_LIST(_) \
_(LENSMODEL_PINHOLE, 4) \
_(LENSMODEL_STEREOGRAPHIC, 4) /* Simple stereographic-only model */ \
_(LENSMODEL_LONLAT, 4) \
_(LENSMODEL_LATLON, 4) \
_(LENSMODEL_OPENCV4, 8) \
_(LENSMODEL_OPENCV5, 9) \
_(LENSMODEL_OPENCV8, 12) \
_(LENSMODEL_OPENCV12, 16) /* available in OpenCV >= 3.0.0) */ \
_(LENSMODEL_CAHVOR, 9)
#define MRCAL_LENSMODEL_WITHCONFIG_STATIC_NPARAMS_LIST(_) \
_(LENSMODEL_CAHVORE, 12)
#define MRCAL_LENSMODEL_WITHCONFIG_DYNAMIC_NPARAMS_LIST(_) \
_(LENSMODEL_SPLINED_STEREOGRAPHIC, -1)
#define MRCAL_LENSMODEL_LIST(_) \
MRCAL_LENSMODEL_NOCONFIG_LIST(_) \
MRCAL_LENSMODEL_WITHCONFIG_STATIC_NPARAMS_LIST(_) \
MRCAL_LENSMODEL_WITHCONFIG_DYNAMIC_NPARAMS_LIST(_)
// parametric models have no extra configuration
typedef struct {} mrcal_LENSMODEL_PINHOLE__config_t;
typedef struct {} mrcal_LENSMODEL_STEREOGRAPHIC__config_t;
typedef struct {} mrcal_LENSMODEL_LONLAT__config_t;
typedef struct {} mrcal_LENSMODEL_LATLON__config_t;
typedef struct {} mrcal_LENSMODEL_OPENCV4__config_t;
typedef struct {} mrcal_LENSMODEL_OPENCV5__config_t;
typedef struct {} mrcal_LENSMODEL_OPENCV8__config_t;
typedef struct {} mrcal_LENSMODEL_OPENCV12__config_t;
typedef struct {} mrcal_LENSMODEL_CAHVOR__config_t;
#define _MRCAL_ITEM_DEFINE_ELEMENT(name, type, pybuildvaluecode, PRIcode,SCNcode, bitfield, cookie) type name bitfield;
#ifndef __cplusplus
// This barfs with g++ 4.8, so I disable it for C++ in general. Checking it for
// C code is sufficient
_Static_assert(sizeof(uint16_t) == sizeof(unsigned short int), "I need a short to be 16-bit. Py_BuildValue doesn't let me just specify that. H means 'unsigned short'");
#endif
// Configuration for CAHVORE. These are given as an an
// "X macro": https://en.wikipedia.org/wiki/X_Macro
#define MRCAL_LENSMODEL_CAHVORE_CONFIG_LIST(_, cookie) \
_(linearity, double, "d", ".2f", "lf", , cookie)
typedef struct
{
MRCAL_LENSMODEL_CAHVORE_CONFIG_LIST(_MRCAL_ITEM_DEFINE_ELEMENT, )
} mrcal_LENSMODEL_CAHVORE__config_t;
// Configuration for the splined stereographic models. These are given as an an
// "X macro": https://en.wikipedia.org/wiki/X_Macro
#define MRCAL_LENSMODEL_SPLINED_STEREOGRAPHIC_CONFIG_LIST(_, cookie) \
/* Maximum degree of each 1D polynomial. This is almost certainly 2 */ \
/* (quadratic splines, C1 continuous) or 3 (cubic splines, C2 continuous) */ \
_(order, uint16_t, "H", PRIu16,SCNu16, , cookie) \
/* We have a Nx by Ny grid of control points */ \
_(Nx, uint16_t, "H", PRIu16,SCNu16, , cookie) \
_(Ny, uint16_t, "H", PRIu16,SCNu16, , cookie) \
/* The horizontal field of view. Not including fov_y. It's proportional with */ \
/* Ny and Nx */ \
_(fov_x_deg, uint16_t, "H", PRIu16,SCNu16, , cookie)
typedef struct
{
MRCAL_LENSMODEL_SPLINED_STEREOGRAPHIC_CONFIG_LIST(_MRCAL_ITEM_DEFINE_ELEMENT, )
} mrcal_LENSMODEL_SPLINED_STEREOGRAPHIC__config_t;
// An X-macro-generated enum mrcal_lensmodel_type_t. This has an element for
// each entry in MRCAL_LENSMODEL_LIST (with "MRCAL_" prepended). This lensmodel
// type selects the lens model, but does NOT provide the configuration.
// mrcal_lensmodel_t does that.
#define _LIST_WITH_COMMA(s,n) ,MRCAL_ ## s
typedef enum
{ // Generic error. Rarely used in current mrcal
MRCAL_LENSMODEL_INVALID = -2,
// Configuration parsing failed
MRCAL_LENSMODEL_INVALID_BADCONFIG = -1,
// A configuration was required, but was missing entirely
MRCAL_LENSMODEL_INVALID_MISSINGCONFIG = -3,
// The model type wasn't known
MRCAL_LENSMODEL_INVALID_TYPE = -4,
// Dummy entry. Must be -1 so that successive values start at 0
_MRCAL_LENSMODEL_DUMMY = -1
// The rest, starting with 0
MRCAL_LENSMODEL_LIST( _LIST_WITH_COMMA ) } mrcal_lensmodel_type_t;
#undef _LIST_WITH_COMMA
// Defines a lens model: the type AND the configuration values
typedef struct
{
// The type of lensmodel. This is an enum, selecting elements of
// MRCAL_LENSMODEL_LIST (with "MRCAL_" prepended)
mrcal_lensmodel_type_t type;
// A union of all the possible configuration structures. We pick the
// structure type based on the value of "type
union
{
#define CONFIG_STRUCT(s,n) mrcal_ ##s##__config_t s##__config;
MRCAL_LENSMODEL_LIST(CONFIG_STRUCT);
#undef CONFIG_STRUCT
};
} mrcal_lensmodel_t;
typedef union
{
struct
{
double x2, y2;
};
double values[2];
} mrcal_calobject_warp_t;
#define MRCAL_NSTATE_CALOBJECT_WARP ((int)((sizeof(mrcal_calobject_warp_t)/sizeof(double))))
//// ADD CHANGES TO THE DOCS IN lensmodels.org
////
// An X-macro-generated mrcal_lensmodel_metadata_t. Each lens model type has
// some metadata that describes its inherent properties. These properties can be
// queried by calling mrcal_lensmodel_metadata() in C and
// mrcal.lensmodel_metadata_and_config() in Python. The available properties and
// their meaning are listed in MRCAL_LENSMODEL_META_LIST()
#define MRCAL_LENSMODEL_META_LIST(_, cookie) \
/* If true, this model contains an "intrinsics core". This is described */ \
/* in mrcal_intrinsics_core_t. If present, the 4 core parameters ALWAYS */ \
/* appear at the start of a model's parameter vector */ \
_(has_core, bool, "i",,, :1, cookie) \
\
/* Whether a model is able to project points behind the camera */ \
/* (z<0 in the camera coordinate system). Models based on a pinhole */ \
/* projection (pinhole, OpenCV, CAHVOR(E)) cannot do this. models based */ \
/* on a stereographic projection (stereographic, splined stereographic) */ \
/* can */ \
_(can_project_behind_camera, bool, "i",,, :1, cookie) \
\
/* Whether gradients are available for this model. Currently only */ \
/* CAHVORE does not have gradients */ \
_(has_gradients, bool, "i",,, :1, cookie) \
\
/* Whether this is a noncentral model.Currently the only noncentral */ \
/* model we have is CAHVORE. There will be more later. */ \
_(noncentral, bool, "i",,, :1, cookie)
typedef struct
{
MRCAL_LENSMODEL_META_LIST(_MRCAL_ITEM_DEFINE_ELEMENT, )
} mrcal_lensmodel_metadata_t;
////////////////////////////////////////////////////////////////////////////////
//////////////////// Optimization
////////////////////////////////////////////////////////////////////////////////
// Used to specify which camera is making an observation. The "intrinsics" index
// is used to identify a specific camera, while the "extrinsics" index is used
// to locate a camera in space. If I have a camera that is moving over time, the
// intrinsics index will remain the same, while the extrinsics index will change
typedef struct
{
// indexes the intrinsics array
int intrinsics;
// indexes the extrinsics array. -1 means "at coordinate system reference"
int extrinsics;
} mrcal_camera_index_t;
// An observation of a calibration board. Each "observation" is ONE camera
// observing a board
typedef struct
{
// which camera is making this observation
mrcal_camera_index_t icam;
// indexes the "frames" array to select the pose of the calibration object
// being observed
int iframe;
} mrcal_observation_board_t;
// An observation of a discrete point. Each "observation" is ONE camera
// observing a single point in space
typedef struct
{
// which camera is making this observation
mrcal_camera_index_t icam;
// indexes the "points" array to select the position of the point being
// observed
int i_point;
// Observed pixel coordinates. This works just like elements of
// observations_board_pool:
//
// .x, .y are the pixel observations
// .z is the weight of the observation. Most of the weights are expected to
// be 1.0. Less precise observations have lower weights.
// .z<0 indicates that this is an outlier. This is respected on
// input
//
// Unlike observations_board_pool, outlier rejection is NOT YET IMPLEMENTED
// for points, so outlier points will NOT be found and reported on output in
// .z<0
mrcal_point3_t px;
} mrcal_observation_point_t;
// Bits indicating which parts of the optimization problem being solved. We can
// ask mrcal to solve for ALL the lens parameters and ALL the geometry and
// everything else. OR we can ask mrcal to lock down some part of the
// optimization problem, and to solve for the rest. If any variables are locked
// down, we use their initial values passed-in to mrcal_optimize()
typedef struct
{
// If true, we solve for the intrinsics core. Applies only to those models
// that HAVE a core (fx,fy,cx,cy)
bool do_optimize_intrinsics_core : 1;
// If true, solve for the non-core lens parameters
bool do_optimize_intrinsics_distortions : 1;
// If true, solve for the geometry of the cameras
bool do_optimize_extrinsics : 1;
// If true, solve for the poses of the calibration object
bool do_optimize_frames : 1;
// If true, optimize the shape of the calibration object
bool do_optimize_calobject_warp : 1;
// If true, apply the regularization terms in the solver
bool do_apply_regularization : 1;
// Whether to try to find NEW outliers. The outliers given on
// input are respected regardless
bool do_apply_outlier_rejection : 1;
} mrcal_problem_selections_t;
// Constants used in a mrcal optimization. This is similar to
// mrcal_problem_selections_t, but contains numerical values rather than just
// bits
typedef struct
{
// The minimum distance of an observed discrete point from its observing
// camera. Any observation of a point below this range will be penalized to
// encourage the optimizer to move the point further away from the camera
double point_min_range;
// The maximum distance of an observed discrete point from its observing
// camera. Any observation of a point abive this range will be penalized to
// encourage the optimizer to move the point closer to the camera
double point_max_range;
} mrcal_problem_constants_t;
// An X-macro-generated mrcal_stats_t. This structure is returned by the
// optimizer, and contains some statistics about the optimization
#define MRCAL_STATS_ITEM(_) \
/* The RMS error of the optimized fit at the optimum. Generally the residual */ \
/* vector x contains error values for each element of q, so N observed pixels */ \
/* produce 2N measurements: len(x) = 2*N. And the RMS error is */ \
/* sqrt( norm2(x) / N ) */ \
_(double, rms_reproj_error__pixels, PyFloat_FromDouble) \
\
/* How many pixel observations were thrown out as outliers. Each pixel */ \
/* observation produces two measurements. Note that this INCLUDES any */ \
/* outliers that were passed-in at the start */ \
_(int, Noutliers, PyLong_FromLong)
#define MRCAL_STATS_ITEM_DEFINE(type, name, pyconverter) type name;
typedef struct
{
MRCAL_STATS_ITEM(MRCAL_STATS_ITEM_DEFINE)
} mrcal_stats_t;
////////////////////////////////////////////////////////////////////////////////
//////////////////// Layout of the measurement and state vectors
////////////////////////////////////////////////////////////////////////////////
// The "intrinsics core" of a camera. This defines the final step of a
// projection operation. For instance with a pinhole model we have
//
// q[0] = focal_xy[0] * x/z + center_xy[0]
// q[1] = focal_xy[1] * y/z + center_xy[1]
typedef struct
{
double focal_xy [2];
double center_xy[2];
} mrcal_intrinsics_core_t;
// structure containing a camera pose + lens model. Used for .cameramodel
// input/output
#define MRCAL_CAMERAMODEL_ELEMENTS_NO_INTRINSICS \
double rt_cam_ref[6]; \
unsigned int imagersize[2]; \
mrcal_lensmodel_t lensmodel \
typedef struct
{
MRCAL_CAMERAMODEL_ELEMENTS_NO_INTRINSICS;
// mrcal_cameramodel_t works for all lensmodels, so its intrinsics count is
// not known at compile time. mrcal_cameramodel_t is thus usable only as
// part of a larger structure or as a mrcal_cameramodel_t* argument to
// functions. To allocate new mrcal_cameramodel_t objects, use
// mrcal_cameramodel_LENSMODEL_XXX_t or malloc() with the proper intrinsics
// size taken into account
double intrinsics[0];
} mrcal_cameramodel_t;
#define DEFINE_mrcal_cameramodel_MODEL_t(s,n) \
typedef union \
{ \
mrcal_cameramodel_t m; \
struct \
{ \
MRCAL_CAMERAMODEL_ELEMENTS_NO_INTRINSICS; \
double intrinsics[n]; \
}; \
} mrcal_cameramodel_ ## s ## _t;
MRCAL_LENSMODEL_NOCONFIG_LIST( DEFINE_mrcal_cameramodel_MODEL_t)
MRCAL_LENSMODEL_WITHCONFIG_STATIC_NPARAMS_LIST(DEFINE_mrcal_cameramodel_MODEL_t)