Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
203ac0f8
Commit
203ac0f8
authored
Feb 21, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10914 from alalek:issue_10815
parents
fb6db3dc
48b8aa51
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
operations.hpp
modules/core/include/opencv2/core/operations.hpp
+6
-0
utility.hpp
modules/core/include/opencv2/core/utility.hpp
+0
-7
No files found.
modules/core/include/opencv2/core/operations.hpp
View file @
203ac0f8
...
...
@@ -365,6 +365,12 @@ template<typename _Tp> static inline _Tp randu()
///////////////////////////////// Formatted string generation /////////////////////////////////
/** @brief Returns a text string formatted using the printf-like expression.
The function acts like sprintf but forms and returns an STL string. It can be used to form an error
message in the Exception constructor.
@param fmt printf-compatible formatting specifiers.
*/
CV_EXPORTS
String
format
(
const
char
*
fmt
,
...
);
///////////////////////////////// Formatted output of cv::Mat /////////////////////////////////
...
...
modules/core/include/opencv2/core/utility.hpp
View file @
203ac0f8
...
...
@@ -182,13 +182,6 @@ extern "C" typedef int (*ErrorCallback)( int status, const char* func_name,
*/
CV_EXPORTS
ErrorCallback
redirectError
(
ErrorCallback
errCallback
,
void
*
userdata
=
0
,
void
**
prevUserdata
=
0
);
/** @brief Returns a text string formatted using the printf-like expression.
The function acts like sprintf but forms and returns an STL string. It can be used to form an error
message in the Exception constructor.
@param fmt printf-compatible formatting specifiers.
*/
CV_EXPORTS
String
format
(
const
char
*
fmt
,
...
);
CV_EXPORTS
String
tempfile
(
const
char
*
suffix
=
0
);
CV_EXPORTS
void
glob
(
String
pattern
,
std
::
vector
<
String
>&
result
,
bool
recursive
=
false
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment