···22// SPDX-License-Identifier: BSL-1.0
33/*!
44 * @file
55- * @brief Simple @ref xrt_frame wrapper around a @ref cv::Mat.
55+ * @brief Simple @ref xrt_frame wrapper around a cv::Mat.
66 * @author Jakob Bornecrantz <jakob@collabora.com>
77 * @ingroup aux_tracking
88 */
···3333 // Exposed to the C api.
3434 struct xrt_frame frame = {};
35353636- // The @ref cv::Mat that holds the data.
3636+ // The cv::Mat that holds the data.
3737 cv::Mat matrix = cv::Mat();
38383939···4444 ~FrameMat();
45454646 /*!
4747- * Wraps the given @ref cv::Mat assuming it's a 24bit RGB format matrix.
4747+ * Wraps the given cv::Mat assuming it's a 24bit RGB format matrix.
4848 * In all but the most strange cases you probably want the pointer
4949- * pointed to by @ref xf_ptr to be nullptr, if not nullptr it will have
5050- * it's reference decremented so make sure it's a valid pointer.
4949+ * pointed to by @p xf_ptr to be `nullptr`, if not `nullptr` it will have
5050+ * its reference count decremented so make sure it's a valid pointer.
5151 */
5252 static void
5353- wrapR8G8B8(cv::Mat mat, xrt_frame **xf_ptr, const Params /*&&?*/ params = {});
5353+ wrapR8G8B8(cv::Mat mat, xrt_frame **xf_ptr, const Params params = {});
54545555 /*!
5656- * Wraps the given @ref cv::Mat assuming it's a 8bit format matrix.
5656+ * Wraps the given cv::Mat assuming it's a 8bit format matrix.
5757 * In all but the most strange cases you probably want the pointer
5858- * pointed to by @ref xf_ptr to be nullptr, if not nullptr it will have
5959- * it's reference decremented so make sure it's a valid pointer.
5858+ * pointed to by @p xf_ptr to be `nullptr`, if not `nullptr` it will have
5959+ * its reference count decremented so make sure it's a valid pointer.
6060 */
6161 static void
6262- wrapL8(cv::Mat mat, xrt_frame **xf_ptr, const Params /*&&?*/ params = {});
6262+ wrapL8(cv::Mat mat, xrt_frame **xf_ptr, const Params params = {});
636364646565private:
+2-1
src/xrt/auxiliary/tracking/t_tracking.h
···9999/*!
100100 * Allocates a new stereo calibration data, unreferences the old @p calib.
101101 *
102102- * Also initializes view[s]::distortion_num, only 5 and 14 is accepted.
102102+ * Also initializes t_camera_calibration::distortion_num in t_stereo_camera_calibration::view, only 5 and 14 is
103103+ * accepted.
103104 *
104105 * @public @memberof t_stereo_camera_calibration
105106 */