Posts

Showing posts from June, 2020

Drowsiness detection system using openCV in python

Image
The Project "Drowsiness Detection System " is made in Python programming language using OpenCV . Modules used in it are: face_recognition [pip install face-recognition] cv2 [pip install opencv-python] playsound [pip install playsound] numpy [pip install numpy] scipy [pip install scipy] time [built_in module] threading [built_in module] Software Requirements: Python 3.x Source code→ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103

Make Screen Recorder App using Python || AI Tutorials || CID

Image
How to make Screen recorder using python : This tutorial will teach you to make screen recorder using python Dependecies👉 python 3.x opencv-python  (cv2) latest version numpy  pyautogui and your basic knowledge in AI with openCV & numpy Full Source Code👉

What are Packages || Python full course || Chapter 24 || CID

Image

How to make website using flask in python || LIVE

Image
How to make Website using Flask in Python In this tutorial, we'll use : Python, flask, bootstrap & html and will learn to make website using flask framework in python. You need only basic knowledge of python , flask ,html and bootstrap to understand this tutorial. Install Python from  Python official website Install flask with using command:     pip install flask     in cmd [ windows ] app.py from flask import Flask,render_template,url_for app = Flask(__name__) @app.route ( '/' ) @app.route ( '/home' ) def home (): return render_template( 'home.html' ) @app.route ( '/about' ) def about (): return render_template( 'about.html' ) if __name__ == "__main__" : app.run(debug= True ) layout.html <!doctype html> <html lang= "en" > <head> <!-- Required meta tags --> <meta charset= "utf-8" > <meta name=