Merge pull request #760 from alekcac:2.4
This commit is contained in:
commit
80fed87d53
2
doc/_themes/blue/layout.html
vendored
2
doc/_themes/blue/layout.html
vendored
@ -183,7 +183,7 @@
|
|||||||
{% if theme_lang == 'c' %}
|
{% if theme_lang == 'c' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if theme_lang == 'cpp' %}
|
{% if theme_lang == 'cpp' %}
|
||||||
<li>Try the <a href="http://opencv.willowgarage.com/wiki/Welcome?action=AttachFile&do=get&target=opencv_cheatsheet.pdf">Cheatsheet</a>.</li>
|
<li>Try the <a href="http://docs.opencv.org/trunk/opencv_cheatsheet.pdf">Cheatsheet</a>.</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if theme_lang == 'py' %}
|
{% if theme_lang == 'py' %}
|
||||||
<li>Try the <a href="cookbook.html">Cookbook</a>.</li>
|
<li>Try the <a href="cookbook.html">Cookbook</a>.</li>
|
||||||
|
@ -201,8 +201,6 @@ Assuming that the image to use as the argument would be located in <DisplayImage
|
|||||||
V2: Using CMake+OpenCV with Eclipse (plugin CDT)
|
V2: Using CMake+OpenCV with Eclipse (plugin CDT)
|
||||||
==================================================
|
==================================================
|
||||||
|
|
||||||
(See the `getting started <http://opencv.willowgarage.com/wiki/Getting_started>` section of the OpenCV Wiki)
|
|
||||||
|
|
||||||
Say you have or create a new file, *helloworld.cpp* in a directory called *foo*:
|
Say you have or create a new file, *helloworld.cpp* in a directory called *foo*:
|
||||||
|
|
||||||
.. code-block:: cpp
|
.. code-block:: cpp
|
||||||
|
@ -7,7 +7,7 @@ Face Recognition with OpenCV
|
|||||||
Introduction
|
Introduction
|
||||||
============
|
============
|
||||||
|
|
||||||
`OpenCV (Open Source Computer Vision) <http://opencv.willowgarage.com>`_ is a popular computer vision library started by `Intel <http://www.intel.com>`_ in 1999. The cross-platform library sets its focus on real-time image processing and includes patent-free implementations of the latest computer vision algorithms. In 2008 `Willow Garage <http://www.willowgarage.com>`_ took over support and OpenCV 2.3.1 now comes with a programming interface to C, C++, `Python <http://www.python.org>`_ and `Android <http://www.android.com>`_. OpenCV is released under a BSD license so it is used in academic projects and commercial products alike.
|
`OpenCV (Open Source Computer Vision) <http://opencv.org>`_ is a popular computer vision library started by `Intel <http://www.intel.com>`_ in 1999. The cross-platform library sets its focus on real-time image processing and includes patent-free implementations of the latest computer vision algorithms. In 2008 `Willow Garage <http://www.willowgarage.com>`_ took over support and OpenCV 2.3.1 now comes with a programming interface to C, C++, `Python <http://www.python.org>`_ and `Android <http://www.android.com>`_. OpenCV is released under a BSD license so it is used in academic projects and commercial products alike.
|
||||||
|
|
||||||
OpenCV 2.4 now comes with the very new :ocv:class:`FaceRecognizer` class for face recognition, so you can start experimenting with face recognition right away. This document is the guide I've wished for, when I was working myself into face recognition. It shows you how to perform face recognition with :ocv:class:`FaceRecognizer` in OpenCV (with full source code listings) and gives you an introduction into the algorithms behind. I'll also show how to create the visualizations you can find in many publications, because a lot of people asked for.
|
OpenCV 2.4 now comes with the very new :ocv:class:`FaceRecognizer` class for face recognition, so you can start experimenting with face recognition right away. This document is the guide I've wished for, when I was working myself into face recognition. It shows you how to perform face recognition with :ocv:class:`FaceRecognizer` in OpenCV (with full source code listings) and gives you an introduction into the algorithms behind. I'll also show how to create the visualizations you can find in many publications, because a lot of people asked for.
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ project(facerec_cpp_samples)
|
|||||||
#SET(OpenCV_DIR /path/to/your/opencv/installation)
|
#SET(OpenCV_DIR /path/to/your/opencv/installation)
|
||||||
|
|
||||||
# packages
|
# packages
|
||||||
find_package(OpenCV REQUIRED) # http://opencv.willowgarage.com
|
find_package(OpenCV REQUIRED) # http://opencv.org
|
||||||
|
|
||||||
# probably you should loop through the sample files here
|
# probably you should loop through the sample files here
|
||||||
add_executable(facerec_demo facerec_demo.cpp)
|
add_executable(facerec_demo facerec_demo.cpp)
|
||||||
|
@ -4,7 +4,7 @@ Introduction
|
|||||||
|
|
||||||
.. highlight:: cpp
|
.. highlight:: cpp
|
||||||
|
|
||||||
OpenCV (Open Source Computer Vision Library: http://opencv.willowgarage.com/wiki/) is an open-source BSD-licensed library that includes several hundreds of computer vision algorithms. The document describes the so-called OpenCV 2.x API, which is essentially a C++ API, as opposite to the C-based OpenCV 1.x API. The latter is described in opencv1x.pdf.
|
OpenCV (Open Source Computer Vision Library: http://opencv.org) is an open-source BSD-licensed library that includes several hundreds of computer vision algorithms. The document describes the so-called OpenCV 2.x API, which is essentially a C++ API, as opposite to the C-based OpenCV 1.x API. The latter is described in opencv1x.pdf.
|
||||||
|
|
||||||
OpenCV has a modular structure, which means that the package includes several shared or static libraries. The following modules are available:
|
OpenCV has a modular structure, which means that the package includes several shared or static libraries. The following modules are available:
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ Maximally stable extremal region extractor. ::
|
|||||||
};
|
};
|
||||||
|
|
||||||
The class encapsulates all the parameters of the MSER extraction algorithm (see
|
The class encapsulates all the parameters of the MSER extraction algorithm (see
|
||||||
http://en.wikipedia.org/wiki/Maximally_stable_extremal_regions). Also see http://opencv.willowgarage.com/wiki/documentation/cpp/features2d/MSER for useful comments and parameters description.
|
http://en.wikipedia.org/wiki/Maximally_stable_extremal_regions). Also see http://code.opencv.org/projects/opencv/wiki/MSER for useful comments and parameters description.
|
||||||
|
|
||||||
|
|
||||||
ORB
|
ORB
|
||||||
|
@ -33,7 +33,7 @@ static void help()
|
|||||||
"It works off of the video: cube4.avi\n"
|
"It works off of the video: cube4.avi\n"
|
||||||
"Using OpenCV version %s\n" << CV_VERSION << "\n\n"
|
"Using OpenCV version %s\n" << CV_VERSION << "\n\n"
|
||||||
" 1). This demo is mainly based on work from Javier Barandiaran Martirena\n"
|
" 1). This demo is mainly based on work from Javier Barandiaran Martirena\n"
|
||||||
" See this page http://opencv.willowgarage.com/wiki/Posit.\n"
|
" See this page http://code.opencv.org/projects/opencv/wiki/Posit.\n"
|
||||||
" 2). This is a demo to illustrate how to use **OpenGL Callback**.\n"
|
" 2). This is a demo to illustrate how to use **OpenGL Callback**.\n"
|
||||||
" 3). You need Qt binding to compile this sample with OpenGL support enabled.\n"
|
" 3). You need Qt binding to compile this sample with OpenGL support enabled.\n"
|
||||||
" 4). The features' detection is very basic and could highly be improved \n"
|
" 4). The features' detection is very basic and could highly be improved \n"
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
* An active user group is at:
|
* An active user group is at:
|
||||||
http://tech.groups.yahoo.com/group/OpenCV/
|
http://tech.groups.yahoo.com/group/OpenCV/
|
||||||
* The minutes of weekly OpenCV development meetings are at:
|
* The minutes of weekly OpenCV development meetings are at:
|
||||||
http://pr.willowgarage.com/wiki/OpenCV
|
http://code.opencv.org/projects/opencv/wiki/Meeting_notes
|
||||||
************************************************** */
|
************************************************** */
|
||||||
|
|
||||||
#include "opencv2/calib3d/calib3d.hpp"
|
#include "opencv2/calib3d/calib3d.hpp"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user