In this post, we will cover Faster R-CNN object detection with PyTorch. We will learn the evolution of object detection from R-CNN to Fast R-CNN to Faster R-CNN. This post is part of our PyTorch for ...
Pose Detection comparison : wrnchAI vs OpenPose
In our previous posts, we discussed how to perform Body and Hand pose estimation using the OpenPose library. Recently, as part of our consulting business, we got a chance to try the state-of-the-art ...
Using OpenVINO with OpenCV
In this post, we will learn how to squeeze the maximum performance out of OpenCV's Deep Neural Network (DNN) module using Intel's OpenVINO toolkit ...
CPU Performance Comparison of OpenCV and other Deep Learning frameworks
In this post, we will compare the performance of various Deep Learning inference frameworks on a few computer vision tasks on the CPU. Surprisingly, with one exception, the OpenCV port of various ...
Hand Keypoint Detection using Deep Learning and OpenCV
Hand Keypoint detection is the process of finding the joints on the fingers as well as the finger-tips in a given image. It is similar to finding keypoints on Face ( a.k.a Facial Landmark Detection ) ...
Multi-Person Pose Estimation in OpenCV using OpenPose
In our previous post, we used the OpenPose model to perform Human Pose Estimation for a single person. In this post, we will discuss how to perform multi-person pose estimation. When there are ...