From 2c2aa696f2c33035a6ef4266caa70afb2120f9ba Mon Sep 17 00:00:00 2001 From: Luz Paz Date: Wed, 26 Feb 2025 09:49:37 -0500 Subject: [PATCH] Fix some remaining typos --- src/aliceVision/camera/IntrinsicBase.hpp | 4 ++-- src/aliceVision/mvsUtils/MultiViewParams.hpp | 2 +- src/aliceVision/sfmData/SfMData.cpp | 4 ++-- src/aliceVision/sfmData/SfMData.hpp | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/aliceVision/camera/IntrinsicBase.hpp b/src/aliceVision/camera/IntrinsicBase.hpp index 413dbcbf14..6241e90583 100644 --- a/src/aliceVision/camera/IntrinsicBase.hpp +++ b/src/aliceVision/camera/IntrinsicBase.hpp @@ -379,7 +379,7 @@ class IntrinsicBase /** * @brief Return true if this ray should be visible in the image * @param ray input ray to check for visibility - * @return True if this ray is visible theorically + * @return True if this ray is visible theoretically */ virtual bool isVisibleRay(const Vec3& ray) const = 0; @@ -486,7 +486,7 @@ class IntrinsicBase * @brief Apply intrinsic and extrinsic parameters to unit vector * from the cameras focus to a point on the camera plane * @param[in] pose Extrinsic pose - * @param[in] intrinsic Intrinsic camera paremeters + * @param[in] intrinsic Intrinsic camera parameters * @param[in] x Point in image * @return The unit vector in 3D space pointing out from the camera to the point */ diff --git a/src/aliceVision/mvsUtils/MultiViewParams.hpp b/src/aliceVision/mvsUtils/MultiViewParams.hpp index 04648a0331..911eab0aab 100644 --- a/src/aliceVision/mvsUtils/MultiViewParams.hpp +++ b/src/aliceVision/mvsUtils/MultiViewParams.hpp @@ -238,7 +238,7 @@ class MultiViewParams * @brief Find nearest cameras for a given tile * @param[in] rc R camera id * @param[in] nbNearestCams maximum number of desired nearest cameras - * @param[in] tCams a given list of pre-selected nearest cameras + * @param[in] tCams a given list of preselected nearest cameras * @param[in] roi the tile 2d region of interest * @return nearest cameras list for the given tile */ diff --git a/src/aliceVision/sfmData/SfMData.cpp b/src/aliceVision/sfmData/SfMData.cpp index 0d0e976175..8242162002 100644 --- a/src/aliceVision/sfmData/SfMData.cpp +++ b/src/aliceVision/sfmData/SfMData.cpp @@ -218,7 +218,7 @@ bool SfMData::operator==(const SfMData& other) const } } - // Root path can be reseted during exports + // Root path can be reset during exports return true; } @@ -335,7 +335,7 @@ void SfMData::setPose(const View& view, const CameraPose& absolutePose) // const bool knownPose = existsPose(view); CameraPose& viewPose = _poses[view.getPoseId()]; - // Pose dedicated for this view (independant from rig, even if it is potentially part of a rig) + // Pose dedicated for this view (independent from rig, even if it is potentially part of a rig) if (view.isPoseIndependant()) { viewPose = absolutePose; diff --git a/src/aliceVision/sfmData/SfMData.hpp b/src/aliceVision/sfmData/SfMData.hpp index 793e2b612d..434f3e4005 100644 --- a/src/aliceVision/sfmData/SfMData.hpp +++ b/src/aliceVision/sfmData/SfMData.hpp @@ -74,7 +74,7 @@ class SfMData /** * @brief Copy constructor * @param other the copied sfmData - * @param unused a parameter to make sure we explicitely want this copy (for legacy) + * @param unused a parameter to make sure we explicitly want this copy (for legacy) * */ SfMData(const SfMData & other, bool unused); @@ -585,7 +585,7 @@ class SfMData void setAbsolutePose(IndexT poseId, const CameraPose& pose) { _poses[poseId] = pose; } /** - * @brief Erase yhe pose for the given poseId + * @brief Erase the pose for the given poseId * @param[in] poseId The given poseId * @param[in] noThrow If false, throw exception if no pose found */