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
94ec0e9b
Commit
94ec0e9b
authored
Jun 06, 2019
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14724 from asashour:typos
parents
51631b90
1aca1d58
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
20 additions
and
20 deletions
+20
-20
fundam.cpp
modules/calib3d/src/fundam.cpp
+1
-1
ippe.hpp
modules/calib3d/src/ippe.hpp
+4
-4
test_cameracalibration_artificial.cpp
modules/calib3d/test/test_cameracalibration_artificial.cpp
+1
-1
core_c.h
modules/core/include/opencv2/core/core_c.h
+1
-1
operations.hpp
modules/core/include/opencv2/core/operations.hpp
+1
-1
optim.hpp
modules/core/include/opencv2/core/optim.hpp
+2
-2
datastructs.cpp
modules/core/src/datastructs.cpp
+1
-1
mathfuncs_core.simd.hpp
modules/core/src/mathfuncs_core.simd.hpp
+1
-1
exif.cpp
modules/imgcodecs/src/exif.cpp
+1
-1
rgbe.cpp
modules/imgcodecs/src/rgbe.cpp
+1
-1
ts_gtest.cpp
modules/ts/src/ts_gtest.cpp
+2
-2
ecc.cpp
modules/video/src/ecc.cpp
+1
-1
lkpyramid.cpp
modules/video/src/lkpyramid.cpp
+2
-2
videocapture_openni.cpp
samples/cpp/videocapture_openni.cpp
+1
-1
No files found.
modules/calib3d/src/fundam.cpp
View file @
94ec0e9b
...
...
@@ -72,7 +72,7 @@ public:
// are geometrically consistent. We check if every 3 correspondences sets
// fulfills the constraint.
//
// The useful
l
ness of this constraint is explained in the paper:
// The usefulness of this constraint is explained in the paper:
//
// "Speeding-up homography estimation in mobile devices"
// Journal of Real-Time Image Processing. 2013. DOI: 10.1007/s11554-012-0314-1
...
...
modules/calib3d/src/ippe.hpp
View file @
94ec0e9b
...
...
@@ -122,10 +122,10 @@ private:
* For highest accuracy the Jacobian should be computed at the centroid of the point correspondences (see the IPPE paper for the explanation of this).
* For a point (ux,uy) on the object plane, suppose the homography H maps (ux,uy) to a point (p,q) in the image (in normalized pixel coordinates).
* The Jacobian matrix [J00, J01; J10,J11] is the Jacobian of the mapping evaluated at (ux,uy).
* @param j00 Homography jacobian coefficent at (ux,uy)
* @param j01 Homography jacobian coefficent at (ux,uy)
* @param j10 Homography jacobian coefficent at (ux,uy)
* @param j11 Homography jacobian coefficent at (ux,uy)
* @param j00 Homography jacobian coeffic
i
ent at (ux,uy)
* @param j01 Homography jacobian coeffic
i
ent at (ux,uy)
* @param j10 Homography jacobian coeffic
i
ent at (ux,uy)
* @param j11 Homography jacobian coeffic
i
ent at (ux,uy)
* @param p The x coordinate of point (ux,uy) mapped into the image (undistorted and normalized position)
* @param q The y coordinate of point (ux,uy) mapped into the image (undistorted and normalized position)
*/
...
...
modules/calib3d/test/test_cameracalibration_artificial.cpp
View file @
94ec0e9b
...
...
@@ -145,7 +145,7 @@ protected:
if
(
fail
)
{
// commented according to vp123's recom
endation. TODO - improve accua
racy
// commented according to vp123's recom
mendation. TODO - improve accu
racy
//ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY); ss
}
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"%d) DistCoeff exp=(%.2f, %.2f, %.4f, %.4f %.2f)
\n
"
,
r
,
k1
,
k2
,
p1
,
p2
,
k3
);
...
...
modules/core/include/opencv2/core/core_c.h
View file @
94ec0e9b
...
...
@@ -579,7 +579,7 @@ CvNArrayIterator;
#define CV_NO_CN_CHECK 2
#define CV_NO_SIZE_CHECK 4
/** initializes iterator that traverses through several arrays simult
e
neously
/** initializes iterator that traverses through several arrays simult
a
neously
(the function together with cvNextArraySlice is used for
N-ari element-wise operations) */
CVAPI
(
int
)
cvInitNArrayIterator
(
int
count
,
CvArr
**
arrs
,
...
...
modules/core/include/opencv2/core/operations.hpp
View file @
94ec0e9b
...
...
@@ -392,7 +392,7 @@ inline unsigned RNG::next()
return
(
unsigned
)
state
;
}
//! returns the next unifomly-distributed random number of the specified type
//! returns the next unifo
r
mly-distributed random number of the specified type
template
<
typename
_Tp
>
static
inline
_Tp
randu
()
{
return
(
_Tp
)
theRNG
();
...
...
modules/core/include/opencv2/core/optim.hpp
View file @
94ec0e9b
...
...
@@ -219,10 +219,10 @@ converge to it. Another obvious restriction is that it should be possible to com
a function at any point, thus it is preferable to have analytic expression for gradient and
computational burden should be born by the user.
The latter responsibility is accomp
i
lished via the getGradient method of a
The latter responsibility is accomplished via the getGradient method of a
MinProblemSolver::Function interface (which represents function being optimized). This method takes
point a point in *n*-dimensional space (first argument represents the array of coordinates of that
point) and comput its gradient (it should be stored in the second argument as an array).
point) and comput
e
its gradient (it should be stored in the second argument as an array).
@note class ConjGradSolver thus does not add any new methods to the basic MinProblemSolver interface.
...
...
modules/core/src/datastructs.cpp
View file @
94ec0e9b
...
...
@@ -3368,7 +3368,7 @@ cvTreeToNodeSeq( const void* first, int header_size, CvMemStorage* storage )
typedef
struct
CvTreeNode
{
int
flags
;
/* mi
cs
ellaneous flags */
int
flags
;
/* mi
sc
ellaneous flags */
int
header_size
;
/* size of sequence header */
struct
CvTreeNode
*
h_prev
;
/* previous sequence */
struct
CvTreeNode
*
h_next
;
/* next sequence */
...
...
modules/core/src/mathfuncs_core.simd.hpp
View file @
94ec0e9b
...
...
@@ -422,7 +422,7 @@ void log64f(const double *src, double *dst, int n)
#define EXPPOLY_32F_A0 .9670371139572337719125840413672004409288e-2
// the code below uses _mm_cast* intrinsics, which are not av
ia
lable on VS2005
// the code below uses _mm_cast* intrinsics, which are not av
ai
lable on VS2005
#if (defined _MSC_VER && _MSC_VER < 1500) || \
(!defined __APPLE__ && defined __GNUC__ && __GNUC__*100 + __GNUC_MINOR__ < 402)
#undef CV_SSE2
...
...
modules/imgcodecs/src/exif.cpp
View file @
94ec0e9b
...
...
@@ -215,7 +215,7 @@ size_t ExifReader::getFieldSize ()
* @brief Filling m_exif member with exif directory elements
* This is internal function and is not exposed to client
*
* @return The function doesn't return any value. In case of uns
i
ccessful parsing
* @return The function doesn't return any value. In case of uns
u
ccessful parsing
* the m_exif member is not filled up
*/
void
ExifReader
::
parseExif
()
...
...
modules/imgcodecs/src/rgbe.cpp
View file @
94ec0e9b
...
...
@@ -51,7 +51,7 @@
// developed by Greg Ward. It handles the conversions between rgbe and
// pixels consisting of floats. The data is assumed to be an array of floats.
// By default there are three floats per pixel in the order red, green, blue.
// (RGBE_DATA_??? values control this.) Only the mi
m
imal header reading and
// (RGBE_DATA_??? values control this.) Only the mi
n
imal header reading and
// writing is implemented. Each routine does error checking and will return
// a status value as defined below. This code is intended as a skeleton so
// feel free to modify it to suit your needs.
...
...
modules/ts/src/ts_gtest.cpp
View file @
94ec0e9b
...
...
@@ -8284,8 +8284,8 @@ DeathTest::TestRole WindowsDeathTest::AssumeRole() {
GTEST_DEATH_TEST_CHECK_
(
::
CreateProcessA
(
executable_path
,
const_cast
<
char
*>
(
command_line
.
c_str
()),
NULL
,
// Retuned process handle is not inheritable.
NULL
,
// Retuned thread handle is not inheritable.
NULL
,
// Retu
r
ned process handle is not inheritable.
NULL
,
// Retu
r
ned thread handle is not inheritable.
TRUE
,
// Child inherits all inheritable handles (for write_handle_).
0x0
,
// Default creation flags.
NULL
,
// Inherit the parent's environment.
...
...
modules/video/src/ecc.cpp
View file @
94ec0e9b
...
...
@@ -550,7 +550,7 @@ double cv::findTransformECC(InputArray templateImage,
const
double
correlation
=
templateZM
.
dot
(
imageWarped
);
// calculate enhanced correlation coeffici
o
nt (ECC)->rho
// calculate enhanced correlation coeffici
e
nt (ECC)->rho
last_rho
=
rho
;
rho
=
correlation
/
(
imgNorm
*
tmpNorm
);
if
(
cvIsNaN
(
rho
))
{
...
...
modules/video/src/lkpyramid.cpp
View file @
94ec0e9b
...
...
@@ -1283,7 +1283,7 @@ void SparsePyrLKOpticalFlowImpl::calc( InputArray _prevImg, InputArray _nextImg,
levels1
/=
2
;
}
// ensure that pyramid has reqired padding
// ensure that pyramid has req
u
ired padding
if
(
levels1
>
0
)
{
Size
fullSize
;
...
...
@@ -1311,7 +1311,7 @@ void SparsePyrLKOpticalFlowImpl::calc( InputArray _prevImg, InputArray _nextImg,
levels2
/=
2
;
}
// ensure that pyramid has reqired padding
// ensure that pyramid has req
u
ired padding
if
(
levels2
>
0
)
{
Size
fullSize
;
...
...
samples/cpp/videocapture_openni.cpp
View file @
94ec0e9b
...
...
@@ -177,7 +177,7 @@ int main( int argc, char* argv[] )
else
capture
.
set
(
CAP_OPENNI_IR_GENERATOR_PRESENT
,
false
);
// Print some ava
li
ble device settings.
// Print some ava
ila
ble device settings.
if
(
capture
.
get
(
CAP_OPENNI_DEPTH_GENERATOR_PRESENT
))
{
cout
<<
"
\n
Depth generator output mode:"
<<
endl
<<
...
...
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