Skip to content

Commit b6e25a9

Browse files
committed
Fix typos
1 parent 2b2ce3f commit b6e25a9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/tutorials/introduction/android_binary_package/android_dev_intro.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Introduction into Android Development
66
*************************************
77

8-
This guide was designed to help you in learning Android development basics and seting up your
8+
This guide was designed to help you in learning Android development basics and setting up your
99
working environment quickly. It was written with Windows 7 in mind, though it would work with Linux
1010
(Ubuntu), Mac OS X and any other OS supported by Android SDK.
1111

modules/highgui/src/cap_libv4l.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,12 +158,12 @@ the symptoms were damaged image and 'Corrupt JPEG data: premature end of data se
158158
159159
11th patch: Apr 13, 2010, Filipe Almeida filipe.almeida@ist.utl.pt
160160
- Tries to setup all properties first through v4l2_ioctl call.
161-
- Allows seting up all Video4Linux properties through cvSetCaptureProperty instead of only CV_CAP_PROP_BRIGHTNESS, CV_CAP_PROP_CONTRAST, CV_CAP_PROP_SATURATION, CV_CAP_PROP_HUE, CV_CAP_PROP_GAIN and CV_CAP_PROP_EXPOSURE.
161+
- Allows setting up all Video4Linux properties through cvSetCaptureProperty instead of only CV_CAP_PROP_BRIGHTNESS, CV_CAP_PROP_CONTRAST, CV_CAP_PROP_SATURATION, CV_CAP_PROP_HUE, CV_CAP_PROP_GAIN and CV_CAP_PROP_EXPOSURE.
162162
163163
12th patch: Apr 16, 2010, Filipe Almeida filipe.almeida@ist.utl.pt
164164
- CvCaptureCAM_V4L structure cleanup (no longer needs <PROPERTY>_{min,max,} variables)
165165
- Introduction of v4l2_ctrl_range - minimum and maximum allowed values for v4l controls
166-
- Allows seting up all Video4Linux properties through cvSetCaptureProperty using input values between 0.0 and 1.0
166+
- Allows setting up all Video4Linux properties through cvSetCaptureProperty using input values between 0.0 and 1.0
167167
- Gets v4l properties first through v4l2_ioctl call (ignores capture->is_v4l2_device)
168168
- cvGetCaptureProperty adjusted to support the changes
169169
- Returns device properties to initial values after device closes

samples/android/15-puzzle/src/org/opencv/samples/puzzle15/Puzzle15Activity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public void onCreate(Bundle savedInstanceState) {
5656
super.onCreate(savedInstanceState);
5757
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
5858

59-
Log.d(TAG, "Creating and seting view");
59+
Log.d(TAG, "Creating and setting view");
6060
mOpenCvCameraView = (CameraBridgeViewBase) new JavaCameraView(this, -1);
6161
setContentView(mOpenCvCameraView);
6262
mOpenCvCameraView.setCvCameraViewListener(this);

0 commit comments

Comments
 (0)