Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
c6a66158
Commit
c6a66158
authored
Jan 18, 2017
by
Alexander Alekhin
Committed by
GitHub
Jan 18, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #951 from mshabunin:doc-minor-fixes
Minor documentation fixes
parents
d1cbfa3b
bef177c7
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
13 deletions
+17
-13
or_pascal.cpp
modules/datasets/src/or_pascal.cpp
+1
-1
tinyxml2.cpp
modules/datasets/src/tinyxml2/tinyxml2.cpp
+9
-10
tinyxml2.h
modules/datasets/src/tinyxml2/tinyxml2.h
+0
-0
tr_svt.cpp
modules/datasets/src/tr_svt.cpp
+1
-1
dpm.hpp
modules/dpm/include/opencv2/dpm.hpp
+5
-0
freetype.hpp
modules/freetype/include/opencv2/freetype.hpp
+1
-1
No files found.
modules/datasets/src/or_pascal.cpp
View file @
c6a66158
...
...
@@ -41,7 +41,7 @@
#include "opencv2/datasets/or_pascal.hpp"
#include "opencv2/datasets/util.hpp"
#include
<opencv2/datasets/tinyxml2/tinyxml2.h>
#include
"tinyxml2/tinyxml2.h"
#include <fstream>
namespace
cv
...
...
modules/datasets/src/tinyxml2/tinyxml2.cpp
View file @
c6a66158
...
...
@@ -21,7 +21,7 @@ must not be misrepresented as being the original software.
distribution.
*/
#include "
opencv2/datasets/
tinyxml2/tinyxml2.h"
#include "tinyxml2/tinyxml2.h"
#include <new> // yes, this one new style header, is in the Android SDK.
# ifdef ANDROID_NDK
...
...
@@ -593,7 +593,7 @@ XMLNode::~XMLNode()
}
}
const
char
*
XMLNode
::
Value
()
const
const
char
*
XMLNode
::
Value
()
const
{
return
_value
.
GetStr
();
}
...
...
@@ -1063,12 +1063,12 @@ bool XMLUnknown::Accept( XMLVisitor* visitor ) const
// --------- XMLAttribute ---------- //
const
char
*
XMLAttribute
::
Name
()
const
const
char
*
XMLAttribute
::
Name
()
const
{
return
_name
.
GetStr
();
}
const
char
*
XMLAttribute
::
Value
()
const
const
char
*
XMLAttribute
::
Value
()
const
{
return
_value
.
GetStr
();
}
...
...
@@ -1271,7 +1271,7 @@ void XMLElement::SetText( const char* inText )
}
void
XMLElement
::
SetText
(
int
v
)
void
XMLElement
::
SetText
(
int
v
)
{
char
buf
[
BUF_SIZE
];
XMLUtil
::
ToStr
(
v
,
buf
,
BUF_SIZE
);
...
...
@@ -1279,7 +1279,7 @@ void XMLElement::SetText( int v )
}
void
XMLElement
::
SetText
(
unsigned
v
)
void
XMLElement
::
SetText
(
unsigned
v
)
{
char
buf
[
BUF_SIZE
];
XMLUtil
::
ToStr
(
v
,
buf
,
BUF_SIZE
);
...
...
@@ -1287,7 +1287,7 @@ void XMLElement::SetText( unsigned v )
}
void
XMLElement
::
SetText
(
bool
v
)
void
XMLElement
::
SetText
(
bool
v
)
{
char
buf
[
BUF_SIZE
];
XMLUtil
::
ToStr
(
v
,
buf
,
BUF_SIZE
);
...
...
@@ -1295,7 +1295,7 @@ void XMLElement::SetText( bool v )
}
void
XMLElement
::
SetText
(
float
v
)
void
XMLElement
::
SetText
(
float
v
)
{
char
buf
[
BUF_SIZE
];
XMLUtil
::
ToStr
(
v
,
buf
,
BUF_SIZE
);
...
...
@@ -1303,7 +1303,7 @@ void XMLElement::SetText( float v )
}
void
XMLElement
::
SetText
(
double
v
)
void
XMLElement
::
SetText
(
double
v
)
{
char
buf
[
BUF_SIZE
];
XMLUtil
::
ToStr
(
v
,
buf
,
BUF_SIZE
);
...
...
@@ -2201,4 +2201,3 @@ bool XMLPrinter::Visit( const XMLUnknown& unknown )
}
}
// namespace tinyxml2
modules/datasets/
include/opencv2/datasets
/tinyxml2/tinyxml2.h
→
modules/datasets/
src
/tinyxml2/tinyxml2.h
View file @
c6a66158
File moved
modules/datasets/src/tr_svt.cpp
View file @
c6a66158
...
...
@@ -42,7 +42,7 @@
#include "opencv2/datasets/tr_svt.hpp"
#include "opencv2/datasets/util.hpp"
#include
<opencv2/datasets/tinyxml2/tinyxml2.h>
#include
"tinyxml2/tinyxml2.h"
namespace
cv
{
...
...
modules/dpm/include/opencv2/dpm.hpp
View file @
c6a66158
...
...
@@ -96,6 +96,9 @@ namespace cv
namespace
dpm
{
//! @addtogroup dpm
//! @{
/** @brief This is a C++ abstract class, it provides external user API to work with DPM.
*/
class
CV_EXPORTS_W
DPMDetector
...
...
@@ -142,6 +145,8 @@ public:
virtual
~
DPMDetector
(){}
};
//! @}
}
// namespace dpm
}
// namespace cv
...
...
modules/freetype/include/opencv2/freetype.hpp
View file @
c6a66158
...
...
@@ -183,7 +183,7 @@ The function createFreeType2 create instance to draw UTF-8 strings.
*/
CV_EXPORTS_W
Ptr
<
FreeType2
>
createFreeType2
();
//! @
]
//! @
}
}
}
// namespace freetype
#endif
...
...
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