You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ch01-On_OpenCV/Introduction to OpenCV-Python Tutorial.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# 关于OpenCV
1
+
# About OpenCV
2
2
3
3
# Translate (Anucha- goolge tranalTE)
4
4
OpenCV was started by Gary Bradsky at Intel in 1999, and the first version was released in 2000. Vadim Pisarevsky joined Gary Bradsky and is responsible for managing Intel’s Russian software OpenCV team.
@@ -7,18 +7,18 @@ In 2005, OpenCV was used to win the [2005 DARPA Grand Challenge] (https://en.wik
7
7
8
8
OpenCV supports a variety of programming languages, such as C++, Python, Java, etc., and can be used on different platforms including Windows, Linux, OS X, Android and iOS. The high-speed GPU operating interface based on CUDA and OpenCL is also actively developing.
OpenCV-Python是OpenCV的Python API,结合了OpenCV C ++ API的最佳特性和Python语言。
10
+
11
11
OpenCV-Python is OpenCV's Python API, which combines the best features of OpenCV C++ API and the Python language.
12
12
13
-
## OpenCV中的Python
13
+
## Python in OpenCV
14
14
15
15
OpenCV-Python is a Python binding library for solving computer vision problems.
16
16
17
17
Python is a common programming language started by Guido van Rossum, which is very popular mainly because of its simplicity and code readability. It enables programmers to express ideas in fewer lines of code without reducing readability.
18
18
19
19
Python is slower than languages such as C/C. That is, Python can be easily extended through C /C, which allows us to write compute-intensive code in C /C? and create python packaging that can be used as a Python module. This gives us two advantages: first, the code is as fast as the original C/C?code (because it actually works in the background), and second, it is easier to code than Python C/C? OpenCV-Python is the original OpenCV C-plus implementation of the Python wrapper.
OpenCV-Python uses Numpy, which is a highly optimized library for numerical operations using MATLAB-style syntax. All OpenCV array structures are converted to Numpy arrays. This also makes it easier to integrate with other libraries that use Numpy (such as SciPy and Matplotlib).
0 commit comments