Python for Engineers

Solve Problems by Coding Solutions - A Complete solution for python programming

Blog Pages

▼

weight converter

›
from tkinter import * window = Tk() def from_kg(): gram = float(e2_value.get())*1000 pound = float(e2_value.get())*2.20462 ounce = flo...

Counting Faces

›
import cv2 import numpy as np import dlib cap = cv2.VideoCapture(0) # Detect the coordinates detector = dlib.get_frontal_face_detector() whi...

Turtle moving circle

›
import turtle def moving_object(move):     move.fillcolor('Purple')      move.begin_fill()      move.circle(10)       move.end_fill(...

creating a real time color detector

›
#Color Detection import numpy as np import cv2 # Capturing video through webcam webcam = cv2.VideoCapture(0) while(1): _, imageFrame = web...

Screen recorder

›
# importing packages import pyautogui import cv2 import numpy as np #resolution resolution = (1920, 1080) codec = cv2.VideoWriter_fourcc(*...
‹
›
Home
View web version
Powered by Blogger.