From a8df49f1704e3079c07fde237bad73163f3e4ff9 Mon Sep 17 00:00:00 2001 From: Maksim Shabunin Date: Fri, 3 May 2024 22:09:19 +0300 Subject: [PATCH 1/2] doc: fixed modern Javadoc issue --- modules/imgproc/include/opencv2/imgproc.hpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/modules/imgproc/include/opencv2/imgproc.hpp b/modules/imgproc/include/opencv2/imgproc.hpp index 40300cb464..5da8cf3ef4 100644 --- a/modules/imgproc/include/opencv2/imgproc.hpp +++ b/modules/imgproc/include/opencv2/imgproc.hpp @@ -4030,16 +4030,6 @@ CV_EXPORTS_W void findContours( InputArray image, OutputArrayOfArrays contours, CV_EXPORTS void findContours( InputArray image, OutputArrayOfArrays contours, int mode, int method, Point offset = Point()); -/** @example samples/cpp/squares.cpp -A program using pyramid scaling, Canny, contours and contour simplification to find -squares in a list of images (pic1-6.png). Returns sequence of squares detected on the image. -*/ - -/** @example samples/tapi/squares.cpp -A program using pyramid scaling, Canny, contours and contour simplification to find -squares in the input image. -*/ - //! @brief Find contours using link runs algorithm //! //! This function implements an algorithm different from cv::findContours: From 4081a309bf88ac49325cee944e7d20ba76b8d26a Mon Sep 17 00:00:00 2001 From: Maksim Shabunin Date: Fri, 3 May 2024 22:09:33 +0300 Subject: [PATCH 2/2] doc: disabled inheritance graphs --- doc/Doxyfile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 5cc7a31ea0..d757c6f92e 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -319,7 +319,7 @@ DOT_FONTPATH = DOT_COMMON_ATTR = "fontname=Helvetica,fontsize=10" DOT_EDGE_ATTR = "labelfontname=Helvetica,labelfontsize=10" DOT_NODE_ATTR = "shape=box,height=0.2,width=0.4" -CLASS_GRAPH = YES +CLASS_GRAPH = NO COLLABORATION_GRAPH = YES GROUP_GRAPHS = NO UML_LOOK = YES