#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...

Tutorial of Face Mask Detection using Tensorflow Object Detection API

Hello guys, Spidy is back with another tutorial of face mask detection using Tensorflow object detection API. So let's start


This tutorial is based on this youtube video, watch it for full instructions.


(1) Create the Dataset for Face Mask. Refer to this video for creating a dataset.
(2) Download the Official Tensorflow repository and Important Codes, Use 'object_detection' as a working directory.
(3) Transform every image in the same resolution using "transform_image_resolution.py" which is available in "importnat.zip".
(4) After that do Imagelabelling for every image, it should be perfect.
Image Labelling Tool

(5) Now just Follow the video.
(6) In END you will get the result like this.





So Guys, until that subscribe my channel. See you in the next one.

Comments

Popular posts from this blog

Pose Estimation using Tensorflow and OpenCV

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