OpenCV with Qt: Difference between revisions
No edit summary |
(dead link) |
||
(9 intermediate revisions by 8 users not shown) | |||
Line 1: | Line 1: | ||
{{LangSwitch}} | |||
[[Category:3D]] | |||
'''OpenCV''' is a cross-platform, open-source, commonly used computer vision library. It uses C++ as its primary interface, but other languages such as C and Python can also be used. OpenCV was originally developed by Intel back in 1999 and is now maintained by Willow Garage and ItSeez. | '''OpenCV''' is a cross-platform, open-source, commonly used computer vision library. It uses C++ as its primary interface, but other languages such as C and Python can also be used. OpenCV was originally developed by Intel back in 1999 and is now maintained by Willow Garage and ItSeez. | ||
OpenCV was originally written in C for maximum performance and portability. | OpenCV was originally written in C for maximum performance and portability. | ||
OpenCV v2.0 was released in October of 2009 and includes major improvements in C++ interface. | |||
Latest releases introduced support to GPU calculation (CUDA, OpenCL), Android platform, iOS platform and Linux Embedded platforms. | Latest releases introduced support to GPU calculation (CUDA, OpenCL), Android platform, iOS platform and Linux Embedded platforms. | ||
OpenCV main strengths are computational efficiency with a focus on near-real-time applications. | OpenCV main strengths are computational efficiency with a focus on near-real-time applications. | ||
This makes OpenCV perfectly suitable for writing applications on mobile platforms such as robots and cell phones. | |||
Face recognition, Object Identification and Augmented Reality are some of the examples of OpenCV usage. | Face recognition, Object Identification and Augmented Reality are some of the examples of OpenCV usage. | ||
'''Installation guides''' | '''Installation guides''' | ||
Installers for Linux, Mac and Windows are readily available [http://opencv.org/downloads.html here]{{dead link}} [opencv.org] | |||
* [http://docs.opencv.org/doc/tutorials/introduction/linux_install/linux_install.html?highlight=installation Linux installation guide] [docs.opencv.org] | |||
* [http://docs.opencv.org/doc/tutorials/introduction/windows_install/windows_install.html?highlight=installation Windows installation guide] [docs.opencv.org] | |||
* [https://wiki.qt.io/How_to_setup_Qt_and_openCV_on_Windows How_to_setup_Qt_and_openCV_on_Windows] [wiki.qt.io] | |||
* [https://wiki.qt.io/How_to_setup_Qt_and_openCV_on_Windows_with_MSVC2017 How_to_setup_Qt_and_openCV_on_Windows_with_MSVC2017] [wiki.qt.io] | |||
'''Documentation''' | '''Documentation''' | ||
* [http://docs.opencv.org/ Official documentation] [docs.opencv.org] | |||
* For books on OpenCV see [[Books]] and [[Non-Qt Books#OpenCV]]. | |||
Latest revision as of 07:13, 30 April 2020
En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh
OpenCV is a cross-platform, open-source, commonly used computer vision library. It uses C++ as its primary interface, but other languages such as C and Python can also be used. OpenCV was originally developed by Intel back in 1999 and is now maintained by Willow Garage and ItSeez.
OpenCV was originally written in C for maximum performance and portability. OpenCV v2.0 was released in October of 2009 and includes major improvements in C++ interface.
Latest releases introduced support to GPU calculation (CUDA, OpenCL), Android platform, iOS platform and Linux Embedded platforms.
OpenCV main strengths are computational efficiency with a focus on near-real-time applications. This makes OpenCV perfectly suitable for writing applications on mobile platforms such as robots and cell phones.
Face recognition, Object Identification and Augmented Reality are some of the examples of OpenCV usage.
Installation guides Installers for Linux, Mac and Windows are readily available hereTemplate:Dead link [opencv.org]
- Linux installation guide [docs.opencv.org]
- Windows installation guide [docs.opencv.org]
- How_to_setup_Qt_and_openCV_on_Windows [wiki.qt.io]
- How_to_setup_Qt_and_openCV_on_Windows_with_MSVC2017 [wiki.qt.io]
Documentation
- Official documentation [docs.opencv.org]
- For books on OpenCV see Books and Non-Qt Books#OpenCV.