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
ade46bd4
Commit
ade46bd4
authored
Jun 26, 2014
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed typos in comments
parent
1138fbb9
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
54 additions
and
54 deletions
+54
-54
camera_calibration_and_3d_reconstruction.rst
.../calib3d/doc/camera_calibration_and_3d_reconstruction.rst
+1
-1
core.hpp
modules/core/include/opencv2/core/core.hpp
+2
-2
cap_libv4l.cpp
modules/highgui/src/cap_libv4l.cpp
+4
-4
cap_v4l.cpp
modules/highgui/src/cap_v4l.cpp
+4
-4
imgproc.hpp
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
+2
-2
contours.cpp
modules/imgproc/src/contours.cpp
+4
-4
epilines.cpp
modules/legacy/src/epilines.cpp
+2
-2
lcm.cpp
modules/legacy/src/lcm.cpp
+2
-2
lee.cpp
modules/legacy/src/lee.cpp
+26
-26
svm.cpp
modules/ml/src/svm.cpp
+1
-1
fft.cpp
modules/ocl/src/fft.cpp
+4
-4
ts.hpp
modules/ts/include/opencv2/ts/ts.hpp
+2
-2
No files found.
modules/calib3d/doc/camera_calibration_and_3d_reconstruction.rst
View file @
ade46bd4
...
...
@@ -1588,7 +1588,7 @@ The distorted point coordinates are [x'; y'] where
x' = (\theta_d / r) x \\
y' = (\theta_d / r) y
Finally, conver
t
ion into pixel coordinates: The final pixel coordinates vector [u; v] where:
Finally, conver
s
ion into pixel coordinates: The final pixel coordinates vector [u; v] where:
.. class:: center
.. math::
...
...
modules/core/include/opencv2/core/core.hpp
View file @
ade46bd4
...
...
@@ -495,7 +495,7 @@ public:
//! dot product computed in double-precision arithmetics
double
ddot
(
const
Matx
<
_Tp
,
m
,
n
>&
v
)
const
;
//! conver
t
ion to another data type
//! conver
s
ion to another data type
template
<
typename
T2
>
operator
Matx
<
T2
,
m
,
n
>
()
const
;
//! change the matrix shape
...
...
@@ -636,7 +636,7 @@ public:
For other dimensionalities the exception is raised
*/
Vec
cross
(
const
Vec
&
v
)
const
;
//! conver
t
ion to another data type
//! conver
s
ion to another data type
template
<
typename
T2
>
operator
Vec
<
T2
,
cn
>
()
const
;
//! conversion to 4-element CvScalar.
operator
CvScalar
()
const
;
...
...
modules/highgui/src/cap_libv4l.cpp
View file @
ade46bd4
...
...
@@ -102,7 +102,7 @@ I modified the following:
autosetup_capture_mode_v4l2 -> autodetect capture modes for v4l2
- Modifications are according with Video4Linux old codes
- Video4Linux handling is automatically if it does not recognize a Video4Linux2 device
- Tested succes
ful
with Logitech Quickcam Express (V4L), Creative Vista (V4L) and Genius VideoCam Notebook (V4L2)
- Tested succes
sfully
with Logitech Quickcam Express (V4L), Creative Vista (V4L) and Genius VideoCam Notebook (V4L2)
- Correct source lines with compiler warning messages
- Information message from v4l/v4l2 detection
...
...
@@ -113,7 +113,7 @@ I modified the following:
- SN9C10x chip based webcams support
- New methods are internal:
bayer2rgb24, sonix_decompress -> decoder routines for SN9C10x decoding from Takafumi Mizuno <taka-qce@ls-a.jp> with his pleasure :)
- Tested succes
ful
with Genius VideoCam Notebook (V4L2)
- Tested succes
sfully
with Genius VideoCam Notebook (V4L2)
Sixth Patch: Sept 10, 2005 Csaba Kertesz sign@freemail.hu
For Release: OpenCV-Linux Beta5 OpenCV-0.9.7
...
...
@@ -123,7 +123,7 @@ I added the following:
- Get and change V4L capture controls (hue, saturation, brightness, contrast)
- New method is internal:
icvSetControl -> set capture controls
- Tested succes
ful
with Creative Vista (V4L)
- Tested succes
sfully
with Creative Vista (V4L)
Seventh Patch: Sept 10, 2005 Csaba Kertesz sign@freemail.hu
For Release: OpenCV-Linux Beta5 OpenCV-0.9.7
...
...
@@ -132,7 +132,7 @@ I added the following:
- Detect, get and change V4L2 capture controls (hue, saturation, brightness, contrast, gain)
- New methods are internal:
v4l2_scan_controls_enumerate_menu, v4l2_scan_controls -> detect capture control intervals
- Tested succes
ful
with Genius VideoCam Notebook (V4L2)
- Tested succes
sfully
with Genius VideoCam Notebook (V4L2)
8th patch: Jan 5, 2006, Olivier.Bornet@idiap.ch
Add support of V4L2_PIX_FMT_YUYV and V4L2_PIX_FMT_MJPEG.
...
...
modules/highgui/src/cap_v4l.cpp
View file @
ade46bd4
...
...
@@ -102,7 +102,7 @@ I modified the following:
autosetup_capture_mode_v4l2 -> autodetect capture modes for v4l2
- Modifications are according with Video4Linux old codes
- Video4Linux handling is automatically if it does not recognize a Video4Linux2 device
- Tested succes
ful
with Logitech Quickcam Express (V4L), Creative Vista (V4L) and Genius VideoCam Notebook (V4L2)
- Tested succes
sfully
with Logitech Quickcam Express (V4L), Creative Vista (V4L) and Genius VideoCam Notebook (V4L2)
- Correct source lines with compiler warning messages
- Information message from v4l/v4l2 detection
...
...
@@ -113,7 +113,7 @@ I modified the following:
- SN9C10x chip based webcams support
- New methods are internal:
bayer2rgb24, sonix_decompress -> decoder routines for SN9C10x decoding from Takafumi Mizuno <taka-qce@ls-a.jp> with his pleasure :)
- Tested succes
ful
with Genius VideoCam Notebook (V4L2)
- Tested succes
sfully
with Genius VideoCam Notebook (V4L2)
Sixth Patch: Sept 10, 2005 Csaba Kertesz sign@freemail.hu
For Release: OpenCV-Linux Beta5 OpenCV-0.9.7
...
...
@@ -123,7 +123,7 @@ I added the following:
- Get and change V4L capture controls (hue, saturation, brightness, contrast)
- New method is internal:
icvSetControl -> set capture controls
- Tested succes
ful
with Creative Vista (V4L)
- Tested succes
sfully
with Creative Vista (V4L)
Seventh Patch: Sept 10, 2005 Csaba Kertesz sign@freemail.hu
For Release: OpenCV-Linux Beta5 OpenCV-0.9.7
...
...
@@ -132,7 +132,7 @@ I added the following:
- Detect, get and change V4L2 capture controls (hue, saturation, brightness, contrast, gain)
- New methods are internal:
v4l2_scan_controls_enumerate_menu, v4l2_scan_controls -> detect capture control intervals
- Tested succes
ful
with Genius VideoCam Notebook (V4L2)
- Tested succes
sfully
with Genius VideoCam Notebook (V4L2)
8th patch: Jan 5, 2006, Olivier.Bornet@idiap.ch
Add support of V4L2_PIX_FMT_YUYV and V4L2_PIX_FMT_MJPEG.
...
...
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
View file @
ade46bd4
...
...
@@ -84,7 +84,7 @@ public:
BaseRowFilter
();
//! the destructor
virtual
~
BaseRowFilter
();
//! the filtering operator. Must be overrid
ed
in the derived classes. The horizontal border interpolation is done outside of the class.
//! the filtering operator. Must be overrid
den
in the derived classes. The horizontal border interpolation is done outside of the class.
virtual
void
operator
()(
const
uchar
*
src
,
uchar
*
dst
,
int
width
,
int
cn
)
=
0
;
int
ksize
,
anchor
;
...
...
@@ -111,7 +111,7 @@ public:
BaseColumnFilter
();
//! the destructor
virtual
~
BaseColumnFilter
();
//! the filtering operator. Must be overrid
ed
in the derived classes. The vertical border interpolation is done outside of the class.
//! the filtering operator. Must be overrid
den
in the derived classes. The vertical border interpolation is done outside of the class.
virtual
void
operator
()(
const
uchar
**
src
,
uchar
*
dst
,
int
dststep
,
int
dstcount
,
int
width
)
=
0
;
//! resets the internal buffers, if any
...
...
modules/imgproc/src/contours.cpp
View file @
ade46bd4
...
...
@@ -125,7 +125,7 @@ _CvContourInfo;
/*
Structure that is used for sequental retrieving contours from the image.
Structure that is used for sequent
i
al retrieving contours from the image.
It supports both hierarchical and plane variants of Suzuki algorithm.
*/
typedef
struct
_CvContourScanner
...
...
@@ -314,7 +314,7 @@ cvStartFindContours( void* _img, CvMemStorage* storage,
tree. The retrieved contour itself is removed from the storage.
Here two cases are possible:
2a. If one deals with plane variant of algorithm
(hierarchical struc
ut
re is not reconstructed),
(hierarchical struc
tu
re is not reconstructed),
the contour is removed completely.
2b. In hierarchical case, the header of the contour is not removed.
It's marked as "link to contour" and h_next pointer of it is set to
...
...
@@ -326,8 +326,8 @@ cvStartFindContours( void* _img, CvMemStorage* storage,
leaves header if hierarchical (but doesn't mark header as "link").
------------------------------------------------------------------------
The 1st variant can be used to retrieve and store all the contours from the image
(with optional conver
t
ion from chains to contours using some approximation from
restriced set of methods). Some characteristics of contour can be computed in the
(with optional conver
s
ion from chains to contours using some approximation from
restric
t
ed set of methods). Some characteristics of contour can be computed in the
same pass.
The usage scheme can look like:
...
...
modules/legacy/src/epilines.cpp
View file @
ade46bd4
...
...
@@ -377,7 +377,7 @@ int icvComCoeffForLine( CvPoint2D64d point1,
camMatr2
,
&
directS4
);
/* Create conver
t
ion for camera 2: two direction and camera point */
/* Create conver
s
ion for camera 2: two direction and camera point */
double
convRotMatr
[
9
];
double
convTransVect
[
3
];
...
...
@@ -1928,7 +1928,7 @@ void icvGetCutPiece( CvVect64d areaLineCoef1,CvVect64d areaLineCoef2,
if
(
numPoints
<
2
)
{
*
result
=
0
;
return
;
/* Error. Not enough
t
points */
return
;
/* Error. Not enough points */
}
/* Project all points to middle line and get max and min */
...
...
modules/legacy/src/lcm.cpp
View file @
ade46bd4
...
...
@@ -100,8 +100,8 @@ typedef struct CvLCMData
// Context:
// Parameters:
// LCM : in&out.
// Returns: 1, if hybrid model was succesfully constructed
// 0, if some error occur
e
s
// Returns: 1, if hybrid model was succes
s
fully constructed
// 0, if some error occurs
//F*/
CV_IMPL
int
_cvConstructLCM
(
CvLCM
*
LCM
);
...
...
modules/legacy/src/lee.cpp
View file @
ade46bd4
...
...
@@ -182,8 +182,8 @@ typedef CvDirection* pCvDirection;
// attempt_number: in, number of unsuccessful attemts made by program to compute
// the Voronoi Diagram befor return the error
//
// Returns: 1, if Voronoi Diagram was succesfully computed
// 0, if some error occur
e
s
// Returns: 1, if Voronoi Diagram was succes
s
fully computed
// 0, if some error occurs
//F*/
static
int
_cvLee
(
CvSeq
*
ContourSeq
,
CvVoronoiDiagramInt
*
pVoronoiDiagramInt
,
...
...
@@ -207,8 +207,8 @@ static int _cvLee(CvSeq* ContourSeq,
// contour_orientation: in, orientation of polygons.
// = 1, if contour is left - oriented in left coordinat system
// =-1, if contour is left - oriented in right coordinat system
// Return: 1, if sites were succesfully constructed
// 0, if some error occur
e
s
// Return: 1, if sites were succes
s
fully constructed
// 0, if some error occurs
//F*/
static
int
_cvConstuctSites
(
CvSeq
*
ContourSeq
,
CvVoronoiDiagramInt
*
pVoronoiDiagram
,
...
...
@@ -223,8 +223,8 @@ static int _cvConstuctSites(CvSeq* ContourSeq,
// Parameters:
// pVoronoiDiagram : in, pointer to struct, which contains the
// description of Voronoi Diagram
// Return: 1, if chains were succesfully constructed
// 0, if some error occur
e
s
// Return: 1, if chains were succes
s
fully constructed
// 0, if some error occurs
//F*/
static
int
_cvConstructChains
(
CvVoronoiDiagramInt
*
pVoronoiDiagram
);
...
...
@@ -236,8 +236,8 @@ static int _cvConstructChains(CvVoronoiDiagramInt* pVoronoiDiagram);
// Parameters:
// VoronoiDiagram : in, pointer to struct, which contains the
// description of Voronoi Diagram.
// Returns: 1, if skeleton was succesfully computed
// 0, if some error occur
e
s
// Returns: 1, if skeleton was succes
s
fully computed
// 0, if some error occurs
//F*/
static
int
_cvConstructSkeleton
(
CvVoronoiDiagramInt
*
pVoronoiDiagram
);
...
...
@@ -280,11 +280,11 @@ static void _cvReleaseVoronoiStorage(CvVoronoiStorageInt* pVoronoiStorage, int g
// Parameters:
// VoronoiDiagram: in
// VoronoiStorage: in
// change_orientation: in, if = -1 then the conver
t
ion is accompanied with change
// change_orientation: in, if = -1 then the conver
s
ion is accompanied with change
// of orientation
//
// Return: 1, if conver
tion was succe
sfully completed
// 0, if some error occur
e
s
// Return: 1, if conver
sion was succes
sfully completed
// 0, if some error occurs
//F*/
/*
static int _cvConvert(CvVoronoiDiagram2D* VoronoiDiagram,
...
...
@@ -311,8 +311,8 @@ static int _cvConvert(CvVoronoiDiagram2D* VoronoiDiagram,
// VoronoiDiagram: in
// VoronoiStorage: in
/
// Return: 1, if conver
tion was succe
sfully completed
// 0, if some error occur
e
s
// Return: 1, if conver
sion was succes
sfully completed
// 0, if some error occurs
//F*/
/*
static int _cvConvertSameOrientation(CvVoronoiDiagram2D* VoronoiDiagram,
...
...
@@ -337,8 +337,8 @@ static int _cvConvertSameOrientation(CvVoronoiDiagram2D* VoronoiDiagram,
// VoronoiDiagram: in
// VoronoiStorage: in
/
// Return: 1, if conver
tion was succe
sfully completed
// 0, if some error occur
e
s
// Return: 1, if conver
sion was succes
sfully completed
// 0, if some error occurs
//F*/
/*
static int _cvConvertChangeOrientation(CvVoronoiDiagram2D* VoronoiDiagram,
...
...
@@ -362,8 +362,8 @@ static int _cvConvertChangeOrientation(CvVoronoiDiagram2D* VoronoiDiagram,
orientation: in, orientation of contour ( = 1 or = -1)
type: in, type of vertices. The possible values are (int)1,
(float)1,(double)1.
Return: 1, if sites were succesfully constructed
0, if some error occur
e
s :
Return: 1, if sites were succes
s
fully constructed
0, if some error occurs :
--------------------------------------------------------------------------*/
template
<
class
T
>
int
_cvConstructExtSites
(
CvVoronoiDiagramInt
*
pVoronoiDiagram
,
...
...
@@ -384,8 +384,8 @@ int _cvConstructExtSites(CvVoronoiDiagramInt* pVoronoiDiagram,
orientation: in, orientation of contour ( = 1 or = -1)
type: in, type of vertices. The possible values are (int)1,
(float)1,(double)1.
Return: 1, if sites were succesfully constructed
0, if some error occur
e
s :
Return: 1, if sites were succes
s
fully constructed
0, if some error occurs :
--------------------------------------------------------------------------*/
template
<
class
T
>
int
_cvConstructIntSites
(
CvVoronoiDiagramInt
*
pVoronoiDiagram
,
...
...
@@ -402,8 +402,8 @@ int _cvConstructIntSites(CvVoronoiDiagramInt* pVoronoiDiagram,
pVoronoiDiagram : in&out, pointer to struct, which contains the
description of Voronoi Diagram
Return: 1, if chains were succesfully constructed
0, if some error occur
e
s
Return: 1, if chains were succes
s
fully constructed
0, if some error occurs
--------------------------------------------------------------------------*/
static
int
_cvConstructExtChains
(
CvVoronoiDiagramInt
*
pVoronoiDiagram
);
...
...
@@ -456,7 +456,7 @@ static void _cvRandomModification(CvVoronoiDiagramInt* pVoronoiDiagram, int begi
Arguments
pVoronoiDiagram : in, pointer to struct, which contains the
description of Voronoi Diagram
Return : 1, if VD was constructed succesfully
Return : 1, if VD was constructed succes
s
fully
0, if some error occure
--------------------------------------------------------------------------*/
static
int
_cvConstructExtVD
(
CvVoronoiDiagramInt
*
pVoronoiDiagram
);
...
...
@@ -479,7 +479,7 @@ static void _cvConstructIntVD(CvVoronoiDiagramInt* pVoronoiDiagram);
pVoronoiDiagram : in, pointer to struct, which contains the
description of Voronoi Diagram
pChain1,pChain1: in, given chains
Return : 1, if joining was succesful
Return : 1, if joining was succes
s
ful
0, if some error occure
--------------------------------------------------------------------------*/
static
int
_cvJoinChains
(
pCvVoronoiChain
pChain1
,
...
...
@@ -507,7 +507,7 @@ static void _cvFindNearestSite(CvVoronoiDiagramInt* pVoronoiDiagram);
pVoronoiDiagram : in, pointer to struct, which contains the
description of Voronoi Diagram
pHole : in, given hole
Return : 1, if the search was succesful
Return : 1, if the search was succes
s
ful
0, if some error occure
--------------------------------------------------------------------------*/
static
int
_cvFindOppositSiteCW
(
pCvVoronoiHole
pHole
,
CvVoronoiDiagramInt
*
pVoronoiDiagram
);
...
...
@@ -522,7 +522,7 @@ static int _cvFindOppositSiteCW(pCvVoronoiHole pHole, CvVoronoiDiagramInt* pVoro
pVoronoiDiagram : in, pointer to struct, which contains the
description of Voronoi Diagram
pHole : in, given hole
Return : 1, if the search was succesful
Return : 1, if the search was succes
s
ful
0, if some error occure
--------------------------------------------------------------------------*/
static
int
_cvFindOppositSiteCCW
(
pCvVoronoiHole
pHole
,
CvVoronoiDiagramInt
*
pVoronoiDiagram
);
...
...
@@ -535,7 +535,7 @@ static int _cvFindOppositSiteCCW(pCvVoronoiHole pHole,CvVoronoiDiagramInt* pVoro
pVoronoiDiagram : in, pointer to struct, which contains the
description of Voronoi Diagram
pHole : in, given hole
Return : 1, if merging was succesful
Return : 1, if merging was succes
s
ful
0, if some error occure
--------------------------------------------------------------------------*/
static
int
_cvMergeVD
(
pCvVoronoiHole
pHole
,
CvVoronoiDiagramInt
*
pVoronoiDiagram
);
...
...
modules/ml/src/svm.cpp
View file @
ade46bd4
...
...
@@ -1632,7 +1632,7 @@ bool CvSVM::train( const CvMat* _train_data, const CvMat* _responses,
if
(
!
do_train
(
svm_type
,
sample_count
,
var_count
,
samples
,
responses
,
temp_storage
,
alpha
))
EXIT
;
ok
=
true
;
// model has been trained succesfully
ok
=
true
;
// model has been trained succes
s
fully
__END__
;
...
...
modules/ocl/src/fft.cpp
View file @
ade46bd4
...
...
@@ -200,8 +200,8 @@ cv::ocl::FftPlan::FftPlan(Size _dft_size, int _src_step, int _dst_step, int _fla
clStridesOut
[
1
]
=
dst_step
/
sizeof
(
float
);
break
;
default
:
//std::runtime_error("does not support this conver
t
ion!");
cout
<<
"Does not support this conver
t
ion!"
<<
endl
;
//std::runtime_error("does not support this conver
s
ion!");
cout
<<
"Does not support this conver
s
ion!"
<<
endl
;
throw
exception
();
break
;
}
...
...
@@ -324,8 +324,8 @@ void cv::ocl::dft(const oclMat &src, oclMat &dst, Size dft_size, int flags)
dst
.
create
(
src
.
rows
,
dft_size
.
width
,
CV_32FC1
);
break
;
default
:
//std::runtime_error("does not support this conver
t
ion!");
cout
<<
"Does not support this conver
t
ion!"
<<
endl
;
//std::runtime_error("does not support this conver
s
ion!");
cout
<<
"Does not support this conver
s
ion!"
<<
endl
;
throw
exception
();
break
;
}
...
...
modules/ts/include/opencv2/ts/ts.hpp
View file @
ade46bd4
...
...
@@ -373,7 +373,7 @@ public:
FAIL_HANG
=-
13
,
// unexpected response on passing bad arguments to the tested function
// (the function crashed, proceed succesfully (while it should not), or returned
// (the function crashed, proceed succes
s
fully (while it should not), or returned
// error code that is different from what is expected)
FAIL_BAD_ARG_CHECK
=-
14
,
...
...
@@ -383,7 +383,7 @@ public:
// the test has been skipped because it is not in the selected subset of the tests to run,
// because it has been run already within the same run with the same parameters, or because
// of some other reason and this is not considered as an error.
// Normally TS::run() (or overrid
ed
method in the derived class) takes care of what
// Normally TS::run() (or overrid
den
method in the derived class) takes care of what
// needs to be run, so this code should not occur.
SKIPPED
=
1
};
...
...
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