#Python Daily Programming | Day-1 | Basic #Programming | #Factorial of Number

Image
Welcome to the Python Daily Programming series. In this series we will upload the daily one python program. So you will get the daily new python program.  I will upload the daily Python Program with an explanation at 5:00:PM. I have more than 300+ program ideas. I will start from very basic and will go to advance day by day. I will try to upload it every day. The programs that I will upload daily is 📌 Basic Program 📌 Array Programs 📌 List Programs 📌 Tuple, Dictionary, Set Programs 📌 File handling, Regex, Date time program 📌 Sorting and algorithm programs 📌 Image processing & OpenCV programs Today is the 1st day of it, We are going to learn about Factorial Program Program - 1 Factorial of Number using Python We need to first understand what is the factorial, wo if someone asks what is the factorial of 5, then you just need to do fact(5) = 5*4*3*2*1. So answer will be 120. So now we are implementing this logic into our Python program. def factorial_of_num(number): f...

Pose Estimation using Tensorflow and OpenCV

So Guys Spidy is back with another video, In this Video I am showing you how you can do pose estimation using Tensorflow Deep Learning.

OpenPose Estimation using Tensorflow


So just Follow the my steps and see the video on YouTube.

(1) Download the Zip :- Download
(2) install the swig :- Swig Download
(3) Put Swig in "tf-pose-estimation" and set the path of swig in environment variable.
(4) Install pycocotools using this command- pip install "git+https://github.com/philferriere/cocoapi.git#egg=pycocotools&subdirectory=PythonAPI"
After that remove "pycocotools" from "requirements.txt"
(5) Now install another libraires using - pip install -r requirements.txt
(6) Download the model from:- Download Model
(6) Change in the code, watch the video for full instruction.
(7) Run "python3 run_webcam.py --camera video1.mp4"

That's all for today, I will back with more interesting posts and videos, until that subscribe us on YouTube.









Comments

Popular posts from this blog

Tutorial of Face Mask Detection using Tensorflow Object Detection API

#Python Daily Programming | Day-1 | Basic #Programming | #Factorial of Number