Posts

Showing posts with the label Tkinter

Ai Enabled Doctor Appointment Recognition System

Image
The Project "Ai Enabled Doctor Appointment Recognition System " is made in Python programming language using Tkinter (for GUI) and OpenCV & face_recognition modules. Modules used in it are: face_recognition [pip install face-recognition] cv2 [pip install opencv-python] pickle dlib cmake [pip install cmake] pyttsx3 [pip install pyttsx3] time [built_in module] tkinter [built_in module] os [built_in module] sys [built_in module] threading [built_in module] Software Requirements: Python 3.x vb basic tools [HOW TO USE] Get Your Copy of project from clicking below button Extract All data from SFX/zip file. Install above mentioned Python 3.x & vb C++ basic tools Install modules mentioned in " requirements.txt " Under folder "dataset" Save images of doctors to be trained, with their name a...

Login Window Design with new User Registration System [Tkinter]

Image
Watch Project Working:- ScreenShots Login Window Simple and easy login Style. Registration Page With having all type of validations. Registration Success A Stylish Registration features. Centralised Window Opens in Center of Your Window Previous Next ...

Tooltip in Tkinter || How to make Balloon in tkinter || Python

Image
Source code 👉🏻 ➖ ➖ ➖ ➖ tooltip.py import tkinter as tk class CreateToolTip ( object ): """ create a tooltip for a given widget """ def __init__ ( self , widget, text = 'widget info' ): self . waittime = 500 #miliseconds self . wraplength = 180 #pixels self . widget = widget self . text = text self . widget . bind( "<Enter>" , self . enter) self . widget . bind( "<Leave>" , self . leave) self . widget . bind( "<ButtonPress>" , self . leave) self . id = None self . tw = None def enter ( self , event = None ): self . schedule() def leave ( self , event = None ): self . unschedule() self . hidetip() def schedule ( self ): self . unschedule() self . id = self . widget . after( self . waittime, self . showtip) def unsc...