From b201d6e631296f29ac8bc4aa0b27639215eac403 Mon Sep 17 00:00:00 2001 From: Kumataro Date: Wed, 29 Apr 2026 16:47:53 +0900 Subject: [PATCH] Merge pull request #28903 from Kumataro:supportDoxygen1_15_0 doc: modernize Doxygen comments to support for v1.15.0 #28903 This PR addresses several documentation build failures encountered with modern Doxygen versions, particularly v1.15.0 (shipped with Ubuntu 26.04). - flann module: Updated license headers from /**** to /*M****. This prevents Doxygen from misinterpreting the license text (specifically the unclosed backticks in ``AS IS'') as documentation blocks, which previously caused "Reached end of file" errors. - core module: Fixed a typo in operations.hpp where a doubled backtick (``) caused parsing to fail. - tutorials: Fixed a missing backtick in real_time_pose.markdown (around line 108) and corrected typos in the RobustMatcher class name. - Links: Resolved explicit link request failures in calib3d.hpp by ensuring proper namespace resolution. These fixes ensure that the documentation can be generated without errors on the latest toolchains. ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake --- .../calib3d/real_time_pose/real_time_pose.markdown | 6 +++--- modules/calib3d/include/opencv2/calib3d.hpp | 6 +++--- modules/core/include/opencv2/core/operations.hpp | 2 +- modules/flann/include/opencv2/flann/all_indices.h | 2 +- modules/flann/include/opencv2/flann/allocator.h | 2 +- modules/flann/include/opencv2/flann/autotuned_index.h | 2 +- modules/flann/include/opencv2/flann/composite_index.h | 2 +- modules/flann/include/opencv2/flann/config.h | 2 +- modules/flann/include/opencv2/flann/defines.h | 2 +- modules/flann/include/opencv2/flann/dist.h | 2 +- modules/flann/include/opencv2/flann/dynamic_bitset.h | 2 +- modules/flann/include/opencv2/flann/flann_base.hpp | 2 +- modules/flann/include/opencv2/flann/general.h | 2 +- modules/flann/include/opencv2/flann/ground_truth.h | 2 +- modules/flann/include/opencv2/flann/heap.h | 2 +- .../include/opencv2/flann/hierarchical_clustering_index.h | 2 +- modules/flann/include/opencv2/flann/index_testing.h | 2 +- modules/flann/include/opencv2/flann/kdtree_index.h | 2 +- modules/flann/include/opencv2/flann/kdtree_single_index.h | 2 +- modules/flann/include/opencv2/flann/kmeans_index.h | 2 +- modules/flann/include/opencv2/flann/linear_index.h | 2 +- modules/flann/include/opencv2/flann/logger.h | 2 +- modules/flann/include/opencv2/flann/lsh_index.h | 2 +- modules/flann/include/opencv2/flann/lsh_table.h | 2 +- modules/flann/include/opencv2/flann/matrix.h | 2 +- modules/flann/include/opencv2/flann/nn_index.h | 2 +- modules/flann/include/opencv2/flann/object_factory.h | 2 +- modules/flann/include/opencv2/flann/params.h | 2 +- modules/flann/include/opencv2/flann/random.h | 2 +- modules/flann/include/opencv2/flann/result_set.h | 2 +- modules/flann/include/opencv2/flann/sampling.h | 2 +- modules/flann/include/opencv2/flann/saving.h | 2 +- modules/flann/include/opencv2/flann/simplex_downhill.h | 2 +- modules/flann/include/opencv2/flann/timer.h | 2 +- modules/flann/src/flann.cpp | 2 +- 35 files changed, 39 insertions(+), 39 deletions(-) diff --git a/doc/tutorials/calib3d/real_time_pose/real_time_pose.markdown b/doc/tutorials/calib3d/real_time_pose/real_time_pose.markdown index 5a5e8e3e2a..c3ac6fad74 100644 --- a/doc/tutorials/calib3d/real_time_pose/real_time_pose.markdown +++ b/doc/tutorials/calib3d/real_time_pose/real_time_pose.markdown @@ -105,7 +105,7 @@ The tutorial consists of two main programs: Using the found matches along with @ref cv::solvePnPRansac function the `R` and `t` of the camera are computed. Finally, a KalmanFilter is applied in order to reject bad poses. - In the case that you compiled OpenCV with the samples, you can find it in opencv/build/bin/cpp-tutorial-pnp_detection`. + In the case that you compiled OpenCV with the samples, you can find it in `opencv/build/bin/cpp-tutorial-pnp_detection`. Then you can run the application and change some parameters: @code{.cpp} This program shows how to detect an object given its 3D textured model. You can choose to use a recorded video or the webcam. @@ -252,8 +252,8 @@ Here is explained in detail the code for the real time application: The next step is to detect the scene features and extract it descriptors. For this task I implemented a *class* **RobustMatcher** which has a function for keypoints detection and features extraction. You can find it in - `samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/RobusMatcher.cpp`. In your - *RobusMatch* object you can use any of the 2D features detectors of OpenCV. In this case I used + `samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/RobustMatcher.cpp`. In your + *RobustMatch* object you can use any of the 2D features detectors of OpenCV. In this case I used @ref cv::ORB features because is based on @ref cv::FAST to detect the keypoints and cv::xfeatures2d::BriefDescriptorExtractor to extract the descriptors which means that is fast and robust to rotations. You can find more detailed information about *ORB* in the documentation. diff --git a/modules/calib3d/include/opencv2/calib3d.hpp b/modules/calib3d/include/opencv2/calib3d.hpp index 7bd8421054..54403f7e6d 100644 --- a/modules/calib3d/include/opencv2/calib3d.hpp +++ b/modules/calib3d/include/opencv2/calib3d.hpp @@ -4171,7 +4171,7 @@ namespace fisheye which are dimensionless coordinates in the camera's focal plane, independent of intrinsic parameters. @note **Fisheye vs. Standard Model:** - Use this function (#fisheye::undistortPoints) for fisheye cameras (wide-angle lenses). + Use this function (#cv::fisheye::undistortPoints) for fisheye cameras (wide-angle lenses). For standard pinhole cameras, use #undistortPoints instead. The fisheye model uses a different distortion parameterization (4 coefficients) compared to the standard model (4-14 coefficients). @@ -4220,14 +4220,14 @@ namespace fisheye The function transforms an image to compensate radial lens distortion. - The function is simply a combination of #fisheye::initUndistortRectifyMap (with unity R ) and #remap + The function is simply a combination of #cv::fisheye::initUndistortRectifyMap (with unity R ) and #remap (with bilinear interpolation). See the former function for details of the transformation being performed. See below the results of undistortImage. - a\) result of undistort of perspective camera model (all possible coefficients (k_1, k_2, k_3, k_4, k_5, k_6) of distortion were optimized under calibration) - - b\) result of #fisheye::undistortImage of fisheye camera model (all possible coefficients (k_1, k_2, + - b\) result of #cv::fisheye::undistortImage of fisheye camera model (all possible coefficients (k_1, k_2, k_3, k_4) of fisheye distortion were optimized under calibration) - c\) original image was captured with fisheye lens diff --git a/modules/core/include/opencv2/core/operations.hpp b/modules/core/include/opencv2/core/operations.hpp index 7eeb2ab4c2..8c9acf84d2 100644 --- a/modules/core/include/opencv2/core/operations.hpp +++ b/modules/core/include/opencv2/core/operations.hpp @@ -490,7 +490,7 @@ message in the Exception constructor. |`const char*`|`%s`| |`char`|`%c`| |`float` / `double`|`%f`,`%g`| -|`int`, `long`, `long long`|`%d`, `%ld`, ``%lld`| +|`int`, `long`, `long long`|`%d`, `%ld`, `%lld`| |`unsigned`, `unsigned long`, `unsigned long long`|`%u`, `%lu`, `%llu`| |`uint64` -> `uintmax_t`, `int64` -> `intmax_t`|`%ju`, `%jd`| |`size_t`|`%zu`| diff --git a/modules/flann/include/opencv2/flann/all_indices.h b/modules/flann/include/opencv2/flann/all_indices.h index 03877ab6ad..979f8caf7c 100644 --- a/modules/flann/include/opencv2/flann/all_indices.h +++ b/modules/flann/include/opencv2/flann/all_indices.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/allocator.h b/modules/flann/include/opencv2/flann/allocator.h index d5870a0181..6669ba0616 100644 --- a/modules/flann/include/opencv2/flann/allocator.h +++ b/modules/flann/include/opencv2/flann/allocator.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/autotuned_index.h b/modules/flann/include/opencv2/flann/autotuned_index.h index 0b02f5670a..d2534b1272 100644 --- a/modules/flann/include/opencv2/flann/autotuned_index.h +++ b/modules/flann/include/opencv2/flann/autotuned_index.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/composite_index.h b/modules/flann/include/opencv2/flann/composite_index.h index 5affd81749..0bc75d73ec 100644 --- a/modules/flann/include/opencv2/flann/composite_index.h +++ b/modules/flann/include/opencv2/flann/composite_index.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/config.h b/modules/flann/include/opencv2/flann/config.h index c9342c00c3..e812c92b68 100644 --- a/modules/flann/include/opencv2/flann/config.h +++ b/modules/flann/include/opencv2/flann/config.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2011 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/defines.h b/modules/flann/include/opencv2/flann/defines.h index 8ab83293ff..b6ed8939de 100644 --- a/modules/flann/include/opencv2/flann/defines.h +++ b/modules/flann/include/opencv2/flann/defines.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2011 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/dist.h b/modules/flann/include/opencv2/flann/dist.h index 7d36bc80ae..41c7f0e14d 100644 --- a/modules/flann/include/opencv2/flann/dist.h +++ b/modules/flann/include/opencv2/flann/dist.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/dynamic_bitset.h b/modules/flann/include/opencv2/flann/dynamic_bitset.h index 676cb0b71e..bef768e063 100644 --- a/modules/flann/include/opencv2/flann/dynamic_bitset.h +++ b/modules/flann/include/opencv2/flann/dynamic_bitset.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/flann_base.hpp b/modules/flann/include/opencv2/flann/flann_base.hpp index af0b380bbf..848f1e286e 100644 --- a/modules/flann/include/opencv2/flann/flann_base.hpp +++ b/modules/flann/include/opencv2/flann/flann_base.hpp @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/general.h b/modules/flann/include/opencv2/flann/general.h index 11ea2af645..8f6b12c448 100644 --- a/modules/flann/include/opencv2/flann/general.h +++ b/modules/flann/include/opencv2/flann/general.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/ground_truth.h b/modules/flann/include/opencv2/flann/ground_truth.h index 17f2a8e848..4c030bc040 100644 --- a/modules/flann/include/opencv2/flann/ground_truth.h +++ b/modules/flann/include/opencv2/flann/ground_truth.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/heap.h b/modules/flann/include/opencv2/flann/heap.h index 8cace20449..5f279a4770 100644 --- a/modules/flann/include/opencv2/flann/heap.h +++ b/modules/flann/include/opencv2/flann/heap.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h b/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h index 60662e7714..9567d71f5e 100644 --- a/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h +++ b/modules/flann/include/opencv2/flann/hierarchical_clustering_index.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2011 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/index_testing.h b/modules/flann/include/opencv2/flann/index_testing.h index 4c00143326..203974562b 100644 --- a/modules/flann/include/opencv2/flann/index_testing.h +++ b/modules/flann/include/opencv2/flann/index_testing.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/kdtree_index.h b/modules/flann/include/opencv2/flann/kdtree_index.h index ed17cecb7c..569844e475 100644 --- a/modules/flann/include/opencv2/flann/kdtree_index.h +++ b/modules/flann/include/opencv2/flann/kdtree_index.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/kdtree_single_index.h b/modules/flann/include/opencv2/flann/kdtree_single_index.h index ed95c3db7d..94ce3f3c45 100644 --- a/modules/flann/include/opencv2/flann/kdtree_single_index.h +++ b/modules/flann/include/opencv2/flann/kdtree_single_index.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/kmeans_index.h b/modules/flann/include/opencv2/flann/kmeans_index.h index 7ced99ca81..b079b9f5e5 100644 --- a/modules/flann/include/opencv2/flann/kmeans_index.h +++ b/modules/flann/include/opencv2/flann/kmeans_index.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/linear_index.h b/modules/flann/include/opencv2/flann/linear_index.h index 6428c0d7ef..8ed8d38bc2 100644 --- a/modules/flann/include/opencv2/flann/linear_index.h +++ b/modules/flann/include/opencv2/flann/linear_index.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/logger.h b/modules/flann/include/opencv2/flann/logger.h index 31f9bbd77f..4cf2960ea4 100644 --- a/modules/flann/include/opencv2/flann/logger.h +++ b/modules/flann/include/opencv2/flann/logger.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/lsh_index.h b/modules/flann/include/opencv2/flann/lsh_index.h index b5e87f6041..009a75095a 100644 --- a/modules/flann/include/opencv2/flann/lsh_index.h +++ b/modules/flann/include/opencv2/flann/lsh_index.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/lsh_table.h b/modules/flann/include/opencv2/flann/lsh_table.h index 3f51457cbb..3a5961e0cf 100644 --- a/modules/flann/include/opencv2/flann/lsh_table.h +++ b/modules/flann/include/opencv2/flann/lsh_table.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/matrix.h b/modules/flann/include/opencv2/flann/matrix.h index bfbf91ef5c..7f7cbe4bd2 100644 --- a/modules/flann/include/opencv2/flann/matrix.h +++ b/modules/flann/include/opencv2/flann/matrix.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/nn_index.h b/modules/flann/include/opencv2/flann/nn_index.h index 23a1de7453..c27aaef4ba 100644 --- a/modules/flann/include/opencv2/flann/nn_index.h +++ b/modules/flann/include/opencv2/flann/nn_index.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/object_factory.h b/modules/flann/include/opencv2/flann/object_factory.h index 5cc45ad1b3..d862e9e9eb 100644 --- a/modules/flann/include/opencv2/flann/object_factory.h +++ b/modules/flann/include/opencv2/flann/object_factory.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/params.h b/modules/flann/include/opencv2/flann/params.h index 1a8e127035..de65a25c97 100644 --- a/modules/flann/include/opencv2/flann/params.h +++ b/modules/flann/include/opencv2/flann/params.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2011 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/random.h b/modules/flann/include/opencv2/flann/random.h index 5a12ef3046..318c3207eb 100644 --- a/modules/flann/include/opencv2/flann/random.h +++ b/modules/flann/include/opencv2/flann/random.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/result_set.h b/modules/flann/include/opencv2/flann/result_set.h index aa679df71c..c34034f77d 100644 --- a/modules/flann/include/opencv2/flann/result_set.h +++ b/modules/flann/include/opencv2/flann/result_set.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/sampling.h b/modules/flann/include/opencv2/flann/sampling.h index 4e452b9bba..2dc5a8289e 100644 --- a/modules/flann/include/opencv2/flann/sampling.h +++ b/modules/flann/include/opencv2/flann/sampling.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/saving.h b/modules/flann/include/opencv2/flann/saving.h index 8b3aeb7f0a..0b81ad0730 100644 --- a/modules/flann/include/opencv2/flann/saving.h +++ b/modules/flann/include/opencv2/flann/saving.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/simplex_downhill.h b/modules/flann/include/opencv2/flann/simplex_downhill.h index 02970148b2..5fcabfe922 100644 --- a/modules/flann/include/opencv2/flann/simplex_downhill.h +++ b/modules/flann/include/opencv2/flann/simplex_downhill.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/include/opencv2/flann/timer.h b/modules/flann/include/opencv2/flann/timer.h index 7dc50a4777..194b95530a 100644 --- a/modules/flann/include/opencv2/flann/timer.h +++ b/modules/flann/include/opencv2/flann/timer.h @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. diff --git a/modules/flann/src/flann.cpp b/modules/flann/src/flann.cpp index b7930c548a..6b7caee3b4 100644 --- a/modules/flann/src/flann.cpp +++ b/modules/flann/src/flann.cpp @@ -1,4 +1,4 @@ -/*********************************************************************** +/*M********************************************************************* * Software License Agreement (BSD License) * * Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved.