# Hands-On-GPU-Accelerated-Computer-Vision-with-OpenCV-and-CUDA
**Repository Path**: qianjide/Hands-On-GPU-Accelerated-Computer-Vision-with-OpenCV-and-CUDA
## Basic Information
- **Project Name**: Hands-On-GPU-Accelerated-Computer-Vision-with-OpenCV-and-CUDA
- **Description**: 借助OpenCV和CUDA实现GPU加速的计算机视觉
该书共计12章,涵盖以下内容:
1.了解如何从CUDA程序访问GPU设备属性和功能;
2.了解如何加快搜索和排序算法;
3.检测图像中的线条和圆形等形状;
4.使用算法探索对象跟踪和检测;
5.在Jetson TX1中使用不同的视频分析技术处理视频;
6.从PyCUDA程序访问GPU设备属性;
7.了解内核执行的工作原理。
每章均配有代码,并录制了10个视频教程。
作为该领域最新的相关开发教程,非常值得参考。
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 5
- **Forks**: 0
- **Created**: 2019-04-15
- **Last Updated**: 2023-10-31
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Hands-On-GPU-Accelerated-Computer-Vision-with-OpenCV-and-CUDA
Hands-On GPU Accelerated Computer Vision with OpenCV and CUDA, published by Packt
This is the code repository for [Hands-On GPU-Accelerated Computer Vision with OpenCV and CUDA](https://www.packtpub.com/application-development/hands-gpu-accelerated-computer-vision-opencv-and-cuda?utm_source=github&utm_medium=repository&utm_campaign=9781789348293 ), published by Packt.
**Effective techniques for processing complex image data in real time using GPUs **
## What is this book about?
Computer vision has been revolutionizing a wide range of industries, and OpenCV is the most widely chosen tool for computer vision with its ability to work in multiple programming languages. Nowadays, in computer vision, there is a need to process large images in real time, which is difficult to handle for OpenCV on its own. This is where CUDA comes into the picture, allowing OpenCV to leverage powerful NVDIA GPUs. This book provides a detailed overview of integrating OpenCV with CUDA for practical applications.
This book covers the following exciting features:
Understand how to access GPU device properties and capabilities from CUDA programs
## Instructions and Navigations
All of the code is organized into folders. For example, Chapter02.
The code will look like the following:
```
while (tid < N)
{
d_c[tid] = d_a[tid] + d_b[tid];
tid += blockDim.x * gridDim.x;
}
```
**Following is what you need for this book:**
This book is a go-to guide for you if you are a developer working with OpenCV and want to learn how to process more complex image data by exploiting GPU processing. A thorough understanding of computer vision concepts and programming languages such as C++ or Python is expected.
With the following software and hardware list you can run all code files present in the book (Chapter 1-12).
### Software and Hardware List
| Chapter | Software required | OS required |
| -------- | ------------------------------------ | ----------------------------------- |
| 1-4 | CUDA Toolkit X.X, Microsoft Visual Studio Community Edition, Nsight | Windows, Mac OS X, and Linux (Any) |
| 5-8 | OpenCV Library | Windows, Mac OS X, and Linux (Any) |
| 10-12 | Anaconda Python, PyCUDA | Windows, Mac OS X, and Linux (Any) |
We also provide a PDF file that has color images of the screenshots/diagrams used in this book. [Click here to download it](https://www.packtpub.com/sites/default/files/downloads/978-1-78934-829-3_ColorImages.pdf).
Visit the following link to check out videos of the code being run: http://bit.ly/2PZOYcH
### Related products
* OpenCV 3 Computer Vision with Python Cookbook [[Packt]](https://www.packtpub.com/application-development/opencv-3-computer-vision-python-cookbook?utm_source=github&utm_medium=repository&utm_campaign=) [[Amazon]](https://www.amazon.com/dp/1788474449)
* Computer Vision with OpenCV 3 and Qt5 [[Packt]](https://www.packtpub.com/application-development/computer-vision-opencv-3-and-qt5?utm_source=github&utm_medium=repository&utm_campaign=9781788472395 ) [[Amazon]](https://www.amazon.com/dp/178847239X)
## Get to Know the Author
**Bhaumik Vaidya**
Bhaumik Vaidya is an experienced computer vision engineer and mentor. He has worked extensively on OpenCV Library in solving computer vision problems. He is a University gold medalist in masters and is now doing a PhD in the acceleration of computer vision algorithms built using OpenCV and deep learning libraries on GPUs. He has a background in teaching and has guided many projects in computer vision and VLSI(Very-large-scale integration). He has worked in the VLSI domain previously as an ASIC verification engineer, so he has very good knowledge of hardware architectures also. He has published many research papers in reputable journals to his credit. He, along with his PhD mentor, has also received an NVIDIA Jetson TX1 embedded development platform as a research grant from NVIDIA.
### Suggestions and Feedback
[Click here](https://docs.google.com/forms/d/e/1FAIpQLSdy7dATC6QmEL81FIUuymZ0Wy9vH1jHkvpY57OiMeKGqib_Ow/viewform) if you have any feedback or suggestions.