From dc1f7ea5cbccaf25353ca6b9a3ecc861fe90b304 Mon Sep 17 00:00:00 2001 From: Suleyman TURKMEN Date: Wed, 13 Nov 2024 15:05:43 +0300 Subject: [PATCH] Update load_point_cloud.cpp --- modules/3d/src/pointcloud/load_point_cloud.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/3d/src/pointcloud/load_point_cloud.cpp b/modules/3d/src/pointcloud/load_point_cloud.cpp index 63f6f828f6..c9e3b13929 100644 --- a/modules/3d/src/pointcloud/load_point_cloud.cpp +++ b/modules/3d/src/pointcloud/load_point_cloud.cpp @@ -78,6 +78,7 @@ void loadPointCloud(const String &filename, OutputArray vertices, OutputArray no CV_UNUSED(filename); CV_UNUSED(vertices); CV_UNUSED(normals); + CV_UNUSED(rgb); CV_LOG_WARNING(NULL, "File system support is disabled in this OpenCV build!"); #endif } @@ -116,6 +117,7 @@ void savePointCloud(const String &filename, InputArray vertices, InputArray norm CV_UNUSED(filename); CV_UNUSED(vertices); CV_UNUSED(normals); + CV_UNUSED(rgb); CV_LOG_WARNING(NULL, "File system support is disabled in this OpenCV build!"); #endif } @@ -243,6 +245,7 @@ void loadMesh(const String &filename, OutputArray vertices, OutputArrayOfArrays CV_UNUSED(normals); CV_UNUSED(colors); CV_UNUSED(indices); + CV_UNUSED(texCoords); CV_LOG_WARNING(NULL, "File system support is disabled in this OpenCV build!"); #endif } @@ -328,6 +331,7 @@ void saveMesh(const String &filename, InputArray vertices, InputArrayOfArrays in CV_UNUSED(colors); CV_UNUSED(normals); CV_UNUSED(indices); + CV_UNUSED(texCoords); CV_LOG_WARNING(NULL, "File system support is disabled in this OpenCV build!"); #endif