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
af997529
Commit
af997529
authored
Nov 26, 2019
by
Brian Wignall
Committed by
Alexander Alekhin
Nov 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some typos
parent
373160ce
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
js_trackbar.markdown
doc/js_tutorials/js_gui/js_trackbar/js_trackbar.markdown
+1
-1
py_trackbar.markdown
doc/py_tutorials/py_gui/py_trackbar/py_trackbar.markdown
+1
-1
py_knn_opencv.markdown
...torials/py_ml/py_knn/py_knn_opencv/py_knn_opencv.markdown
+1
-1
random_generator_and_text.markdown
...dom_generator_and_text/random_generator_and_text.markdown
+3
-3
msa_macros.h
modules/core/include/opencv2/core/hal/msa_macros.h
+2
-2
test_watershed.cpp
modules/imgproc/test/test_watershed.cpp
+1
-1
No files found.
doc/js_tutorials/js_gui/js_trackbar/js_trackbar.markdown
View file @
af997529
...
...
@@ -36,7 +36,7 @@ let x = document.getElementById('myRange');
@endcode
As a trackbar, the range element need a trackbar name, the default value, minimum value, maximum value,
step and the callback function which is executed everytime trackbar value changes. The callback function
step and the callback function which is executed every
time trackbar value changes. The callback function
always has a default argument, which is the trackbar position. Additionally, a text element to display the
trackbar value is fine. In our case, we can create the trackbar as below:
@code{.html}
...
...
doc/py_tutorials/py_gui/py_trackbar/py_trackbar.markdown
View file @
af997529
...
...
@@ -16,7 +16,7 @@ correspondingly window color changes. By default, initial color will be set to B
For cv.getTrackbarPos() function, first argument is the trackbar name, second one is the window
name to which it is attached, third argument is the default value, fourth one is the maximum value
and fifth one is the callback function which is executed everytime trackbar value changes. The
and fifth one is the callback function which is executed every
time trackbar value changes. The
callback function always has a default argument which is the trackbar position. In our case,
function does nothing, so we simply pass.
...
...
doc/py_tutorials/py_ml/py_knn/py_knn_opencv/py_knn_opencv.markdown
View file @
af997529
...
...
@@ -54,7 +54,7 @@ print( accuracy )
@endcode
So our basic OCR app is ready. This particular example gave me an accuracy of 91%. One option
improve accuracy is to add more data for training, especially the wrong ones. So instead of finding
this training data everytime I start application, I better save it, so that next time, I directly
this training data every
time I start application, I better save it, so that next time, I directly
read this data from a file and start classification. You can do it with the help of some Numpy
functions like np.savetxt, np.savez, np.load etc. Please check their docs for more details.
@code{.py}
...
...
doc/tutorials/imgproc/random_generator_and_text/random_generator_and_text.markdown
View file @
af997529
...
...
@@ -210,12 +210,12 @@ Explanation
@code{.cpp}
image2 = image - Scalar::all(i)
@endcode
So, **image2** is the sub
s
traction of **image** and **Scalar::all(i)**. In fact, what happens
here is that every pixel of **image2** will be the result of sub
s
tracting every pixel of
So, **image2** is the subtraction of **image** and **Scalar::all(i)**. In fact, what happens
here is that every pixel of **image2** will be the result of subtracting every pixel of
**image** minus the value of **i** (remember that for each pixel we are considering three values
such as R, G and B, so each of them will be affected)
Also remember that the sub
s
traction operation *always* performs internally a **saturate**
Also remember that the subtraction operation *always* performs internally a **saturate**
operation, which means that the result obtained will always be inside the allowed range (no
negative and between 0 and 255 for our example).
...
...
modules/core/include/opencv2/core/hal/msa_macros.h
View file @
af997529
...
...
@@ -502,7 +502,7 @@ typedef double v1f64 __attribute__ ((vector_size(8), aligned(8)));
(v4u32)__builtin_msa_pckev_w((v4i32)__builtin_msa_sat_u_d((v2u64)__e, 31), (v4i32)__builtin_msa_sat_u_d((v2u64)__d, 31)); \
})
/* Minimum values between corresponding elements in the two vectors are written to t
eh
returned vector. */
/* Minimum values between corresponding elements in the two vectors are written to t
he
returned vector. */
#define msa_minq_s8(__a, __b) (__builtin_msa_min_s_b(__a, __b))
#define msa_minq_s16(__a, __b) (__builtin_msa_min_s_h(__a, __b))
#define msa_minq_s32(__a, __b) (__builtin_msa_min_s_w(__a, __b))
...
...
@@ -514,7 +514,7 @@ typedef double v1f64 __attribute__ ((vector_size(8), aligned(8)));
#define msa_minq_f32(__a, __b) (__builtin_msa_fmin_w(__a, __b))
#define msa_minq_f64(__a, __b) (__builtin_msa_fmin_d(__a, __b))
/* Maximum values between corresponding elements in the two vectors are written to t
eh
returned vector. */
/* Maximum values between corresponding elements in the two vectors are written to t
he
returned vector. */
#define msa_maxq_s8(__a, __b) (__builtin_msa_max_s_b(__a, __b))
#define msa_maxq_s16(__a, __b) (__builtin_msa_max_s_h(__a, __b))
#define msa_maxq_s32(__a, __b) (__builtin_msa_max_s_w(__a, __b))
...
...
modules/imgproc/test/test_watershed.cpp
View file @
af997529
...
...
@@ -82,7 +82,7 @@ void CV_WatershedTest::run( int /* start_from */)
Point
*
p
=
(
Point
*
)
cvGetSeqElem
(
cnts
,
0
);
//expected image was added with 1 in order to save to png
//so now we sub
s
tract 1 to get real color
//so now we subtract 1 to get real color
if
(
!
exp
.
empty
())
colors
.
push_back
(
exp
.
ptr
(
p
->
y
)[
p
->
x
]
-
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