Skip to content

technoinc-india/Hands-On-GPU-Accelerated-Computer-Vision-with-OpenCV-and-CUDA

 
 

Repository files navigation

Hands-On-GPU-Accelerated-Computer-Vision-with-OpenCV-and-CUDA

Hands-On GPU Accelerated Computer Vision with OpenCV and CUDA, published by Packt

Hands-On GPU-Accelerated Computer Vision with OpenCV and CUDA

This is the code repository for Hands-On GPU-Accelerated Computer Vision with OpenCV and CUDA, 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

  • Learn how to accelerate searching and sorting algorithms
  • Detect shapes such as lines and circles in images
  • Explore object tracking and detection with algorithms
  • Process videos using different video analysis techniques in Jetson TX1
  • Access GPU device properties from the PyCUDA program
  • Understand how kernel execution works
  • If you feel this book is for you, get your copy today!

    https://www.packtpub.com/

    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.

    Visit the following link to check out videos of the code being run: http://bit.ly/2PZOYcH

    Related products

    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 if you have any feedback or suggestions.

About

Hands-On GPU Accelerated Computer Vision with OpenCV and CUDA, published by Packt

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 42.6%
  • Cuda 40.9%
  • Python 16.5%