The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

a/tracking: Fix doxygen warnings about invalid link requests

+13 -12
+1 -1
src/xrt/auxiliary/tracking/t_frame_cv_mat_wrapper.cpp
··· 2 2 // SPDX-License-Identifier: BSL-1.0 3 3 /*! 4 4 * @file 5 - * @brief Simple @ref xrt_frame wrapper around a @ref cv::Mat. 5 + * @brief Simple @ref xrt_frame wrapper around a cv::Mat. 6 6 * @author Jakob Bornecrantz <jakob@collabora.com> 7 7 * @ingroup aux_tracking 8 8 */
+10 -10
src/xrt/auxiliary/tracking/t_frame_cv_mat_wrapper.hpp
··· 2 2 // SPDX-License-Identifier: BSL-1.0 3 3 /*! 4 4 * @file 5 - * @brief Simple @ref xrt_frame wrapper around a @ref cv::Mat. 5 + * @brief Simple @ref xrt_frame wrapper around a cv::Mat. 6 6 * @author Jakob Bornecrantz <jakob@collabora.com> 7 7 * @ingroup aux_tracking 8 8 */ ··· 33 33 // Exposed to the C api. 34 34 struct xrt_frame frame = {}; 35 35 36 - // The @ref cv::Mat that holds the data. 36 + // The cv::Mat that holds the data. 37 37 cv::Mat matrix = cv::Mat(); 38 38 39 39 ··· 44 44 ~FrameMat(); 45 45 46 46 /*! 47 - * Wraps the given @ref cv::Mat assuming it's a 24bit RGB format matrix. 47 + * Wraps the given cv::Mat assuming it's a 24bit RGB format matrix. 48 48 * In all but the most strange cases you probably want the pointer 49 - * pointed to by @ref xf_ptr to be nullptr, if not nullptr it will have 50 - * it's reference decremented so make sure it's a valid pointer. 49 + * pointed to by @p xf_ptr to be `nullptr`, if not `nullptr` it will have 50 + * its reference count decremented so make sure it's a valid pointer. 51 51 */ 52 52 static void 53 - wrapR8G8B8(cv::Mat mat, xrt_frame **xf_ptr, const Params /*&&?*/ params = {}); 53 + wrapR8G8B8(cv::Mat mat, xrt_frame **xf_ptr, const Params params = {}); 54 54 55 55 /*! 56 - * Wraps the given @ref cv::Mat assuming it's a 8bit format matrix. 56 + * Wraps the given cv::Mat assuming it's a 8bit format matrix. 57 57 * In all but the most strange cases you probably want the pointer 58 - * pointed to by @ref xf_ptr to be nullptr, if not nullptr it will have 59 - * it's reference decremented so make sure it's a valid pointer. 58 + * pointed to by @p xf_ptr to be `nullptr`, if not `nullptr` it will have 59 + * its reference count decremented so make sure it's a valid pointer. 60 60 */ 61 61 static void 62 - wrapL8(cv::Mat mat, xrt_frame **xf_ptr, const Params /*&&?*/ params = {}); 62 + wrapL8(cv::Mat mat, xrt_frame **xf_ptr, const Params params = {}); 63 63 64 64 65 65 private:
+2 -1
src/xrt/auxiliary/tracking/t_tracking.h
··· 99 99 /*! 100 100 * Allocates a new stereo calibration data, unreferences the old @p calib. 101 101 * 102 - * Also initializes view[s]::distortion_num, only 5 and 14 is accepted. 102 + * Also initializes t_camera_calibration::distortion_num in t_stereo_camera_calibration::view, only 5 and 14 is 103 + * accepted. 103 104 * 104 105 * @public @memberof t_stereo_camera_calibration 105 106 */