From 0094667bccbc3be5cd81f06b0079889271ee5790 Mon Sep 17 00:00:00 2001 From: Giuseppe Romagnuolo Date: Sun, 12 Mar 2023 08:58:03 +0000 Subject: [PATCH 1/2] Docs: a brief introduction to OpenCV Individual not familiar with OpenCV can get a quick first glance understanding of what OpenCV (and OpenCV Python in particular) is about. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 60cdebea..5d887873 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Pre-built CPU-only OpenCV packages for Python. +OpenCV (Open Source Computer Vision Library) is an open-source computer vision and machine learning software library. OpenCV Python provides a set of easy-to-use functions for image and video processing, including image loading, filtering, transformation, feature extraction, object detection, and more. It provides interfaces to popular machine learning frameworks like TensorFlow and PyTorch, making it a popular choice for computer vision tasks in both academia and industry. + Check the manual build section if you wish to compile the bindings from source to enable additional modules such as CUDA. ### Installation and Usage From 3003c1bb82a2fdc3a55ba7726143f9ee7c8ea4b6 Mon Sep 17 00:00:00 2001 From: Giuseppe Romagnuolo Date: Wed, 15 Mar 2023 12:38:51 +0000 Subject: [PATCH 2/2] Update README.md Removed reference to Tensorflow and Pytorch as per Alexander Smorkalov's comment. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d887873..44f0f8b3 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Pre-built CPU-only OpenCV packages for Python. -OpenCV (Open Source Computer Vision Library) is an open-source computer vision and machine learning software library. OpenCV Python provides a set of easy-to-use functions for image and video processing, including image loading, filtering, transformation, feature extraction, object detection, and more. It provides interfaces to popular machine learning frameworks like TensorFlow and PyTorch, making it a popular choice for computer vision tasks in both academia and industry. +OpenCV (Open Source Computer Vision Library) is an open-source computer vision and machine learning software library. OpenCV Python provides a set of easy-to-use functions for image and video processing, including image loading, filtering, transformation, feature extraction, object detection, and more. Check the manual build section if you wish to compile the bindings from source to enable additional modules such as CUDA.