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
ecfd0561
Commit
ecfd0561
authored
Dec 05, 2014
by
Maksim Shabunin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed whitespace warnings in new tutorials
parent
6d282ddf
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
4 additions
and
32 deletions
+4
-32
py_bindings_basics.markdown
...y_bindings/py_bindings_basics/py_bindings_basics.markdown
+0
-1
py_depthmap.markdown
doc/py_tutorials/py_calib3d/py_depthmap/py_depthmap.markdown
+0
-1
py_epipolar_geometry.markdown
...alib3d/py_epipolar_geometry/py_epipolar_geometry.markdown
+0
-1
py_brief.markdown
doc/py_tutorials/py_feature2d/py_brief/py_brief.markdown
+0
-1
py_mouse_handling.markdown
...rials/py_gui/py_mouse_handling/py_mouse_handling.markdown
+0
-1
py_trackbar.markdown
doc/py_tutorials/py_gui/py_trackbar/py_trackbar.markdown
+0
-1
py_svm_opencv.markdown
...torials/py_ml/py_svm/py_svm_opencv/py_svm_opencv.markdown
+0
-1
py_inpainting.markdown
...y_tutorials/py_photo/py_inpainting/py_inpainting.markdown
+0
-1
py_intro.markdown
doc/py_tutorials/py_setup/py_intro/py_intro.markdown
+0
-1
py_lucas_kanade.markdown
...torials/py_video/py_lucas_kanade/py_lucas_kanade.markdown
+0
-1
py_meanshift.markdown
doc/py_tutorials/py_video/py_meanshift/py_meanshift.markdown
+0
-1
camera_calibration_square_chess.markdown
...ion_square_chess/camera_calibration_square_chess.markdown
+0
-1
basic_geometric_drawing.markdown
.../basic_geometric_drawing/basic_geometric_drawing.markdown
+0
-1
detection_of_planar_objects.markdown
...on_of_planar_objects/detection_of_planar_objects.markdown
+0
-2
feature_homography.markdown
...features2d/feature_homography/feature_homography.markdown
+0
-2
corner_subpixeles.markdown
...ackingmotion/corner_subpixeles/corner_subpixeles.markdown
+0
-1
generic_corner_detector.markdown
.../generic_corner_detector/generic_corner_detector.markdown
+0
-1
good_features_to_track.markdown
...on/good_features_to_track/good_features_to_track.markdown
+0
-1
harris_detector.markdown
...d/trackingmotion/harris_detector/harris_detector.markdown
+0
-1
tutorials.markdown
doc/tutorials/tutorials.markdown
+0
-1
ug_highgui.markdown
doc/user_guide/ug_highgui.markdown
+2
-5
ug_intelperc.markdown
doc/user_guide/ug_intelperc.markdown
+2
-5
No files found.
doc/py_tutorials/py_bindings/py_bindings_basics/py_bindings_basics.markdown
View file @
ecfd0561
...
...
@@ -144,4 +144,3 @@ proper macros in their appropriate positions. Rest is done by generator scripts.
may be an exceptional cases where generator scripts cannot create the wrappers. Such functions need
to be handled manually. But most of the time, a code written according to OpenCV coding guidelines
will be automatically wrapped by generator scripts.
doc/py_tutorials/py_calib3d/py_depthmap/py_depthmap.markdown
View file @
ecfd0561
...
...
@@ -65,4 +65,3 @@ Exercises
-# OpenCV samples contain an example of generating disparity map and its 3D reconstruction. Check
stereo_match.py in OpenCV-Python samples.
doc/py_tutorials/py_calib3d/py_epipolar_geometry/py_epipolar_geometry.markdown
View file @
ecfd0561
...
...
@@ -172,4 +172,3 @@ Exercises
2.
Fundamental Matrix estimation is sensitive to quality of matches, outliers etc. It becomes worse
when all selected matches lie on the same plane.
[
Check this
discussion](http://answers.opencv.org/question/18125/epilines-not-correct/).
doc/py_tutorials/py_feature2d/py_brief/py_brief.markdown
View file @
ecfd0561
...
...
@@ -80,4 +80,3 @@ Additional Resources
Independent Elementary Features", 11th European Conference on Computer Vision (ECCV), Heraklion,
Crete. LNCS Springer, September 2010.
2.
LSH (Locality Sensitive Hasing) at wikipedia.
doc/py_tutorials/py_gui/py_mouse_handling/py_mouse_handling.markdown
View file @
ecfd0561
...
...
@@ -109,4 +109,3 @@ Exercises
-# In our last example, we drew filled rectangle. You modify the code to draw an unfilled
rectangle.
doc/py_tutorials/py_gui/py_trackbar/py_trackbar.markdown
View file @
ecfd0561
...
...
@@ -72,4 +72,3 @@ Exercises
-# Create a Paint application with adjustable colors and brush radius using trackbars. For drawing,
refer previous tutorial on mouse handling.
doc/py_tutorials/py_ml/py_svm/py_svm_opencv/py_svm_opencv.markdown
View file @
ecfd0561
...
...
@@ -135,4 +135,3 @@ Exercises
-# OpenCV samples contain digits.py which applies a slight improvement of the above method to get
improved result. It also contains the reference. Check it and understand it.
doc/py_tutorials/py_photo/py_inpainting/py_inpainting.markdown
View file @
ecfd0561
...
...
@@ -87,4 +87,3 @@ Exercises
Adobe Photoshop. On further search, I was able to find that same technique is already there in
GIMP with different name, "Resynthesizer" (You need to install separate plugin). I am sure you
will enjoy the technique.
doc/py_tutorials/py_setup/py_intro/py_intro.markdown
View file @
ecfd0561
...
...
@@ -84,4 +84,3 @@ Additional Resources
3.
[
Numpy Examples List
](
http://wiki.scipy.org/Numpy_Example_List
)
4.
[
OpenCV Documentation
](
http://docs.opencv.org/
)
5.
[
OpenCV Forum
](
http://answers.opencv.org/questions/
)
doc/py_tutorials/py_video/py_lucas_kanade/py_lucas_kanade.markdown
View file @
ecfd0561
...
...
@@ -223,4 +223,3 @@ Exercises
-# Check the code in samples/python2/lk_track.py. Try to understand the code.
2.
Check the code in samples/python2/opt_flow.py. Try to understand the code.
doc/py_tutorials/py_video/py_meanshift/py_meanshift.markdown
View file @
ecfd0561
...
...
@@ -183,4 +183,3 @@ Exercises
-# OpenCV comes with a Python sample on interactive demo of camshift. Use it, hack it, understand
it.
doc/tutorials/calib3d/camera_calibration_square_chess/camera_calibration_square_chess.markdown
View file @
ecfd0561
...
...
@@ -52,4 +52,3 @@ image.
opencv/samples/cpp/calibration.cpp, function computeReprojectionErrors).
Question: how to calculate the distance from the camera origin to any of the corners?
doc/tutorials/core/basic_geometric_drawing/basic_geometric_drawing.markdown
View file @
ecfd0561
...
...
@@ -241,4 +241,3 @@ Result
Compiling and running your program should give you a result like this:
![](
images/Drawing_1_Tutorial_Result_0.png
)
doc/tutorials/features2d/detection_of_planar_objects/detection_of_planar_objects.markdown
View file @
ecfd0561
...
...
@@ -50,5 +50,3 @@ known planar objects in scenes.
Mat points1Projected; perspectiveTransform(Mat(points1), points1Projected, H);
-
Use drawMatches for drawing inliers.
doc/tutorials/features2d/feature_homography/feature_homography.markdown
View file @
ecfd0561
...
...
@@ -137,5 +137,3 @@ Result
-# And here is the result for the detected object (highlighted in green)
![](images/Feature_Homography_Result.jpg)
doc/tutorials/features2d/trackingmotion/corner_subpixeles/corner_subpixeles.markdown
View file @
ecfd0561
...
...
@@ -127,4 +127,3 @@ Result
Here is the result:
![](
images/Corner_Subpixeles_Result.jpg
)
doc/tutorials/features2d/trackingmotion/generic_corner_detector/generic_corner_detector.markdown
View file @
ecfd0561
...
...
@@ -33,4 +33,3 @@ Result
![](
images/My_Harris_corner_detector_Result.jpg
)
![](
images/My_Shi_Tomasi_corner_detector_Result.jpg
)
doc/tutorials/features2d/trackingmotion/good_features_to_track/good_features_to_track.markdown
View file @
ecfd0561
...
...
@@ -112,4 +112,3 @@ Result
------
![](
images/Feature_Detection_Result_a.jpg
)
doc/tutorials/features2d/trackingmotion/harris_detector/harris_detector.markdown
View file @
ecfd0561
...
...
@@ -206,4 +206,3 @@ The original image:
The detected corners are surrounded by a small black circle
![](
images/Harris_Detector_Result.jpg
)
doc/tutorials/tutorials.markdown
View file @
ecfd0561
...
...
@@ -74,4 +74,3 @@ As always, we would be happy to hear your comments and receive your contribution
-
@subpage tutorial_table_of_content_viz
These tutorials show how to use Viz module effectively.
doc/user_guide/ug_highgui.markdown
View file @
ecfd0561
HighGUI {#tutorial_ug_highgui}
=======
Using Kinect and other OpenNI compatible depth sensors
------------------------------------------------------
Using Kinect and other OpenNI compatible depth sensors {#tutorial_ug_highgui}
======================================================
Depth sensors compatible with OpenNI (Kinect, XtionPRO, ...) are supported through VideoCapture
class. Depth map, RGB image and some other formats of output can be retrieved by using familiar
...
...
doc/user_guide/ug_intelperc.markdown
View file @
ecfd0561
HighGUI {#tutorial_ug_intelperc}
=======
Using Creative Senz3D and other Intel Perceptual Computing SDK compatible depth sensors
---------------------------------------------------------------------------------------
Using Creative Senz3D and other Intel Perceptual Computing SDK compatible depth sensors {#tutorial_ug_intelperc}
=======================================================================================
Depth sensors compatible with Intel Perceptual Computing SDK are supported through VideoCapture
class. Depth map, RGB image and some other formats of output can be retrieved by using familiar
...
...
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