From b6e25a9fc7b6fe511be1cd6f47ca2b45bbb51658 Mon Sep 17 00:00:00 2001 From: Neo Alienson <neo@orz.hk> Date: Mon, 16 Jun 2014 18:48:10 +0800 Subject: [PATCH] Fix typos --- .../introduction/android_binary_package/android_dev_intro.rst | 2 +- modules/highgui/src/cap_libv4l.cpp | 4 ++-- .../src/org/opencv/samples/puzzle15/Puzzle15Activity.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/tutorials/introduction/android_binary_package/android_dev_intro.rst b/doc/tutorials/introduction/android_binary_package/android_dev_intro.rst index 9545bee286..8c470925ff 100644 --- a/doc/tutorials/introduction/android_binary_package/android_dev_intro.rst +++ b/doc/tutorials/introduction/android_binary_package/android_dev_intro.rst @@ -5,7 +5,7 @@ Introduction into Android Development ************************************* -This guide was designed to help you in learning Android development basics and seting up your +This guide was designed to help you in learning Android development basics and setting up your working environment quickly. It was written with Windows 7 in mind, though it would work with Linux (Ubuntu), Mac OS X and any other OS supported by Android SDK. diff --git a/modules/highgui/src/cap_libv4l.cpp b/modules/highgui/src/cap_libv4l.cpp index e7aa5b5dfe..a05c4b2123 100644 --- a/modules/highgui/src/cap_libv4l.cpp +++ b/modules/highgui/src/cap_libv4l.cpp @@ -158,12 +158,12 @@ the symptoms were damaged image and 'Corrupt JPEG data: premature end of data se 11th patch: Apr 13, 2010, Filipe Almeida filipe.almeida@ist.utl.pt - Tries to setup all properties first through v4l2_ioctl call. -- 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. +- 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. 12th patch: Apr 16, 2010, Filipe Almeida filipe.almeida@ist.utl.pt - CvCaptureCAM_V4L structure cleanup (no longer needs <PROPERTY>_{min,max,} variables) - Introduction of v4l2_ctrl_range - minimum and maximum allowed values for v4l controls -- Allows seting up all Video4Linux properties through cvSetCaptureProperty using input values between 0.0 and 1.0 +- Allows setting up all Video4Linux properties through cvSetCaptureProperty using input values between 0.0 and 1.0 - Gets v4l properties first through v4l2_ioctl call (ignores capture->is_v4l2_device) - cvGetCaptureProperty adjusted to support the changes - Returns device properties to initial values after device closes diff --git a/samples/android/15-puzzle/src/org/opencv/samples/puzzle15/Puzzle15Activity.java b/samples/android/15-puzzle/src/org/opencv/samples/puzzle15/Puzzle15Activity.java index ebd34fc7e2..e82f0f9236 100644 --- a/samples/android/15-puzzle/src/org/opencv/samples/puzzle15/Puzzle15Activity.java +++ b/samples/android/15-puzzle/src/org/opencv/samples/puzzle15/Puzzle15Activity.java @@ -56,7 +56,7 @@ public class Puzzle15Activity extends Activity implements CvCameraViewListener, super.onCreate(savedInstanceState); getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); - Log.d(TAG, "Creating and seting view"); + Log.d(TAG, "Creating and setting view"); mOpenCvCameraView = (CameraBridgeViewBase) new JavaCameraView(this, -1); setContentView(mOpenCvCameraView); mOpenCvCameraView.setCvCameraViewListener(this);