From 3e0b63f65b63e0270aeadb7dc0a7237a3cd17797 Mon Sep 17 00:00:00 2001 From: berak Date: Thu, 30 Mar 2017 11:07:52 +0200 Subject: [PATCH] fix comment in optim.hpp --- modules/core/include/opencv2/core/optim.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/include/opencv2/core/optim.hpp b/modules/core/include/opencv2/core/optim.hpp index 7249e0fe75..190d54310f 100644 --- a/modules/core/include/opencv2/core/optim.hpp +++ b/modules/core/include/opencv2/core/optim.hpp @@ -73,7 +73,7 @@ public: /** @brief Getter for the optimized function. The optimized function is represented by Function interface, which requires derivatives to - implement the sole method calc(double*) to evaluate the function. + implement the calc(double*) and getDim() methods to evaluate the function. @return Smart-pointer to an object that implements Function interface - it represents the function that is being optimized. It can be empty, if no function was given so far.