Coders Packet

Packets submitted by Rachit R Jindal

Virtual Assistant in Python

The virtual assistant named 'DBX' makes use of speech_recognition, pyttsx3, and pywhatkit python modules for listening, converting speech-to-text, and search for text on the web.

Sending Email using SMTP in Python using the smtplib module

This emailing system using Python can be used in an alert system like an e-commerce price alert system, etc. It uses the smtplib, email, imghdr, and os Python modules.

Text Extraction from live frame using Tesseract in Python

This packet involves the use of Pytesseract, a powerful OCR(Optical Character Recognition) tool in python, for the classification of characters in a live frame.

QR Code Detector using cv2 in Python

A Python packet involving the use of the cv2 module to detect and decode the scanned QR code and display the coded data in the form of a string.

QR Code Generator using qrcode in Python

A QR code generator builds QRcode for any data, website, etc in Python. The QR Code can be even placed over an image or can be customized using qrcode module in python.

Sudoku Solver using Backtracking in C++

This packet uses the approach of backtracking in C++ for solving the sudoku for an NxN matrix i.e, 4x4, 9X9, 25x25. Due to implementation in C++, the execution is relatively faster.

Motion Detection using OpenCV in Python

An interesting python project involving the use of a cv2 module for detecting the motion by using the difference in the frame technique.

Face Recognition Attendance System Using OpenCV, LBPH Face Recognizer in Python

This is a real-world attendance system developed in Python that utilizes LBPH Face recognizer for training the data and Haar cascade classifier for detection of faces.