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
75513a46
Commit
75513a46
authored
Mar 22, 2013
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove all include directives for <string>
parent
29b544d8
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
12 additions
and
31 deletions
+12
-31
camera_activity.cpp
modules/androidcamera/src/camera_activity.cpp
+0
-1
basic_structures.rst
modules/core/doc/basic_structures.rst
+5
-5
command_line_parser.rst
modules/core/doc/command_line_parser.rst
+2
-2
core.hpp
modules/core/include/opencv2/core.hpp
+0
-1
gl_core_3_1.cpp
modules/core/src/gl_core_3_1.cpp
+0
-1
flann_base.hpp
modules/flann/include/opencv2/flann/flann_base.hpp
+0
-1
hierarchical_clustering_index.h
...ann/include/opencv2/flann/hierarchical_clustering_index.h
+0
-1
kmeans_index.h
modules/flann/include/opencv2/flann/kmeans_index.h
+0
-1
nn_index.h
modules/flann/include/opencv2/flann/nn_index.h
+0
-2
NCVHaarObjectDetection.hpp
modules/gpu/src/nvidia/NCVHaarObjectDetection.hpp
+0
-1
NCV.cu
modules/gpu/src/nvidia/core/NCV.cu
+0
-1
precomp.hpp
modules/gpu/src/precomp.hpp
+0
-1
cap_pvapi.cpp
modules/highgui/src/cap_pvapi.cpp
+0
-1
ml.hpp
modules/ml/include/opencv2/ml.hpp
+0
-1
latent_svm.rst
modules/objdetect/doc/latent_svm.rst
+3
-3
cascadedetect.cpp
modules/objdetect/src/cascadedetect.cpp
+0
-2
haar.cpp
modules/ocl/src/haar.cpp
+0
-1
octave.cpp
modules/softcascade/src/octave.cpp
+0
-1
frame_source.cpp
modules/superres/src/frame_source.cpp
+2
-2
frame_source.hpp
modules/videostab/include/opencv2/videostab/frame_source.hpp
+0
-1
global_motion.hpp
...les/videostab/include/opencv2/videostab/global_motion.hpp
+0
-1
No files found.
modules/androidcamera/src/camera_activity.cpp
View file @
75513a46
...
...
@@ -4,7 +4,6 @@
#include <dirent.h>
#include <android/log.h>
#include <cctype>
#include <string>
#include <vector>
#include <algorithm>
#include <opencv2/core/version.hpp>
...
...
modules/core/doc/basic_structures.rst
View file @
75513a46
...
...
@@ -2457,13 +2457,13 @@ Algorithm::name
---------------
Returns the algorithm name
.. ocv:function::
s
tring Algorithm::name() const
.. ocv:function::
S
tring Algorithm::name() const
Algorithm::get
--------------
Returns the algorithm parameter
.. ocv:function:: template<typename _Tp> typename ParamType<_Tp>::member_type Algorithm::get(const
s
tring& name) const
.. ocv:function:: template<typename _Tp> typename ParamType<_Tp>::member_type Algorithm::get(const
S
tring& name) const
:param name: The parameter name.
...
...
@@ -2472,7 +2472,7 @@ The method returns value of the particular parameter. Since the compiler can not
* myalgo.get<int>("param_name")
* myalgo.get<double>("param_name")
* myalgo.get<bool>("param_name")
* myalgo.get<
s
tring>("param_name")
* myalgo.get<
S
tring>("param_name")
* myalgo.get<Mat>("param_name")
* myalgo.get<vector<Mat> >("param_name")
* myalgo.get<Algorithm>("param_name") (it returns Ptr<Algorithm>).
...
...
@@ -2529,13 +2529,13 @@ Algorithm::getList
------------------
Returns the list of registered algorithms
.. ocv:function:: void Algorithm::getList(vector<
s
tring>& algorithms)
.. ocv:function:: void Algorithm::getList(vector<
S
tring>& algorithms)
:param algorithms: The output vector of algorithm names.
This static method returns the list of registered algorithms in alphabetical order. Here is how to use it ::
vector<
s
tring> algorithms;
vector<
S
tring> algorithms;
Algorithm::getList(algorithms);
cout << "Algorithms: " << algorithms.size() << endl;
for (size_t i=0; i < algorithms.size(); i++)
...
...
modules/core/doc/command_line_parser.rst
View file @
75513a46
...
...
@@ -63,8 +63,8 @@ The sample below demonstrates how to use CommandLineParser:
use_time_stamp = parser.has("timestamp");
cv::String img1 = parser.get<
s
tring>(0);
cv::String img2 = parser.get<
s
tring>(1);
cv::String img1 = parser.get<
cv::S
tring>(0);
cv::String img2 = parser.get<
cv::S
tring>(1);
int repeat = parser.get<int>(2);
...
...
modules/core/include/opencv2/core.hpp
View file @
75513a46
...
...
@@ -62,7 +62,6 @@
#include <complex>
#include <map>
#include <new>
#include <string>
#include <vector>
#include <sstream>
#endif // SKIP_INCLUDES
...
...
modules/core/src/gl_core_3_1.cpp
View file @
75513a46
#include <string>
#include <sstream>
#include "cvconfig.h"
#include "opencv2/core.hpp"
...
...
modules/flann/include/opencv2/flann/flann_base.hpp
View file @
75513a46
...
...
@@ -32,7 +32,6 @@
#define OPENCV_FLANN_BASE_HPP_
#include <vector>
#include <string>
#include <cassert>
#include <cstdio>
...
...
modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
View file @
75513a46
...
...
@@ -32,7 +32,6 @@
#define OPENCV_FLANN_HIERARCHICAL_CLUSTERING_INDEX_H_
#include <algorithm>
#include <string>
#include <map>
#include <cassert>
#include <limits>
...
...
modules/flann/include/opencv2/flann/kmeans_index.h
View file @
75513a46
...
...
@@ -32,7 +32,6 @@
#define OPENCV_FLANN_KMEANS_INDEX_H_
#include <algorithm>
#include <string>
#include <map>
#include <cassert>
#include <limits>
...
...
modules/flann/include/opencv2/flann/nn_index.h
View file @
75513a46
...
...
@@ -31,8 +31,6 @@
#ifndef OPENCV_FLANN_NNINDEX_H
#define OPENCV_FLANN_NNINDEX_H
#include <string>
#include "general.h"
#include "matrix.h"
#include "result_set.h"
...
...
modules/gpu/src/nvidia/NCVHaarObjectDetection.hpp
View file @
75513a46
...
...
@@ -58,7 +58,6 @@
#ifndef _ncvhaarobjectdetection_hpp_
#define _ncvhaarobjectdetection_hpp_
#include <string>
#include "NCV.hpp"
...
...
modules/gpu/src/nvidia/core/NCV.cu
View file @
75513a46
...
...
@@ -41,7 +41,6 @@
#include <iostream>
#include <string>
#include <vector>
#include "NCV.hpp"
...
...
modules/gpu/src/precomp.hpp
View file @
75513a46
...
...
@@ -64,7 +64,6 @@
#include <deque>
#include <stdexcept>
#include <memory>
#include <string>
#include "opencv2/gpu.hpp"
#include "opencv2/imgproc.hpp"
...
...
modules/highgui/src/cap_pvapi.cpp
View file @
75513a46
...
...
@@ -63,7 +63,6 @@
# include <unistd.h>
#endif
#include <string>
//#include <arpa/inet.h>
#define MAX_CAMERAS 10
...
...
modules/ml/include/opencv2/ml.hpp
View file @
75513a46
...
...
@@ -47,7 +47,6 @@
#ifdef __cplusplus
#include <map>
#include <string>
#include <iostream>
// Apple defines a check() macro somewhere in the debug headers
...
...
modules/objdetect/doc/latent_svm.rst
View file @
75513a46
...
...
@@ -204,7 +204,7 @@ Two types of constructors.
..
ocv
:
function
::
LatentSvmDetector
::
LatentSvmDetector
()
..
ocv
:
function
::
LatentSvmDetector
::
LatentSvmDetector
(
const
vector
<
string
>&
filenames
,
const
vector
<
string
>&
classNames
=
vector
<
s
tring
>())
..
ocv
:
function
::
LatentSvmDetector
::
LatentSvmDetector
(
const
vector
<
String
>&
filenames
,
const
vector
<
String
>&
classNames
=
vector
<
S
tring
>())
...
...
@@ -228,7 +228,7 @@ LatentSvmDetector::load
-----------------------
Load the trained models from given ``.xml`` files and return ``true`` if at least one model was loaded.
.. ocv:function:: bool LatentSvmDetector::load( const vector<
string>& filenames, const vector<string>& classNames=vector<s
tring>() )
.. ocv:function:: bool LatentSvmDetector::load( const vector<
String>& filenames, const vector<String>& classNames=vector<S
tring>() )
:param filenames: A set of filenames storing the trained detectors (models). Each file contains one model. See examples of such files here /opencv_extra/testdata/cv/latentsvmdetector/models_VOC2007/.
...
...
@@ -250,7 +250,7 @@ LatentSvmDetector::getClassNames
--------------------------------
Return
the
class
(
model
)
names
that
were
passed
in
constructor
or
method
``
load
``
or
extracted
from
models
filenames
in
those
methods
.
..
ocv
:
function
::
const
vector
<
s
tring
>&
LatentSvmDetector
::
getClassNames
()
const
..
ocv
:
function
::
const
vector
<
S
tring
>&
LatentSvmDetector
::
getClassNames
()
const
LatentSvmDetector
::
getClassCount
--------------------------------
...
...
modules/objdetect/src/cascadedetect.cpp
View file @
75513a46
...
...
@@ -44,8 +44,6 @@
#include "cascadedetect.hpp"
#include <string>
#if defined (LOG_CASCADE_STATISTIC)
struct
Logger
{
...
...
modules/ocl/src/haar.cpp
View file @
75513a46
...
...
@@ -49,7 +49,6 @@
#include "precomp.hpp"
#include <stdio.h>
#include <string>
using
namespace
cv
;
using
namespace
cv
::
ocl
;
...
...
modules/softcascade/src/octave.cpp
View file @
75513a46
...
...
@@ -42,7 +42,6 @@
#include "precomp.hpp"
#include <queue>
#include <string>
using
cv
::
InputArray
;
using
cv
::
OutputArray
;
...
...
modules/superres/src/frame_source.cpp
View file @
75513a46
...
...
@@ -83,7 +83,7 @@ Ptr<FrameSource> cv::superres::createFrameSource_Empty()
#ifndef HAVE_OPENCV_HIGHGUI
Ptr
<
FrameSource
>
cv
::
superres
::
createFrameSource_Video
(
const
s
tring
&
fileName
)
Ptr
<
FrameSource
>
cv
::
superres
::
createFrameSource_Video
(
const
S
tring
&
fileName
)
{
(
void
)
fileName
;
CV_Error
(
CV_StsNotImplemented
,
"The called functionality is disabled for current build or platform"
);
...
...
@@ -190,7 +190,7 @@ Ptr<FrameSource> cv::superres::createFrameSource_Camera(int deviceId)
#ifndef HAVE_OPENCV_GPU
Ptr
<
FrameSource
>
cv
::
superres
::
createFrameSource_Video_GPU
(
const
s
tring
&
fileName
)
Ptr
<
FrameSource
>
cv
::
superres
::
createFrameSource_Video_GPU
(
const
S
tring
&
fileName
)
{
(
void
)
fileName
;
CV_Error
(
CV_StsNotImplemented
,
"The called functionality is disabled for current build or platform"
);
...
...
modules/videostab/include/opencv2/videostab/frame_source.hpp
View file @
75513a46
...
...
@@ -44,7 +44,6 @@
#define __OPENCV_VIDEOSTAB_FRAME_SOURCE_HPP__
#include <vector>
#include <string>
#include "opencv2/core.hpp"
namespace
cv
...
...
modules/videostab/include/opencv2/videostab/global_motion.hpp
View file @
75513a46
...
...
@@ -44,7 +44,6 @@
#define __OPENCV_VIDEOSTAB_GLOBAL_MOTION_HPP__
#include <vector>
#include <string>
#include <fstream>
#include "opencv2/core.hpp"
#include "opencv2/features2d.hpp"
...
...
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