Code Packets
Browse all published coding projects
Object detection in Python using Keras
We will learn about object detection using a very powerful algorithm known as the YOLO algorithm using Keras in Python
Face Recognition in Python using Haar Cascade and MTCNN library in pictures
Face Recognition in python3 using - i) Haar Cascade Classifier in OpenCV ii) MTCNN library with high accuracy. The code detects faces in pictures.
Digit Classifier using TensorFlow, Keras and OpenCV Python
This project is an application of a Computer Vision in which Digits from 0 to 9 can be classified and predicted correctly. The project uses Convolutional Neural Networks to predict the images.
Coronavirus Analysis Using Python
CoronaVirus (COVID-19) Analysis and visualization using Python by using various package as Matplotlib, Pandas and NumPy.
To-Do List Website Using JavaScript
This Project is a Website prototype of To-Do List where You can Manage Your routines.
Logistic Regression in Python using Scikit-Learn
In this project, we will create a logistic regression model to predict whether or not a patient’s heart failure is fatal.
Sudoku in Python
In this project a sudoku game is made using Python. This project consists of usage of numpy package in Python.
Tic-Tac-Toe game in Python
In this project a tic-tac-toe game is made using Python. The game consists of a GUI using tkinter libraries of Python.
Text to Speech Conversion Using JavaScript
This Project Focuses on converting Your Text to Speech of different voices which is one of the exciting project.
Accessing Webcam on any webpage using JavaScript
This Project Focuses on Running Video in any HTML file which can Be Useful for Many Real-Life Projects like Exam Proctoring, Video Conferencing, and many more.
Formation of Dynamic Clock Using JavaScript
This Project Focuses on the creation of a Dynamic clock according to local time which is very useful in using it on many websites.
Python program to find sum of cubes of first n natural numbers.
This Python tutorial gives an easy way to find the sum of cubes of first n natural numbers i.e., 1*1*1+2*2*2+3*3*3+.....n*n*n.