Free Source Code, Capstone Projects & Programming Tutorials

Your trusted resource for downloadable source code, complete capstone projects with ER diagrams and Chapter 1-5 documentation, AI-ready capstones (RAG, ChatGPT, computer vision), and step-by-step tutorials in PHP, Python, Java, JavaScript, and more. Built by working developers, tested before publishing, and updated for 2026.

📅 Updated weekly | ✅ Code tested before publishing | 👨‍💻 Built by PIES IT Solutions developers

Database Design Project for Inventory Management System

Database Design Project for Inventory Management System

This Database Design Project for Inventory Management System oversee flow of stocks from the manufacturers to warehouses and from these centers to Point of Sales and Inventory System Database Design. Inventory Management System Database Design Project …

Read more

Database Design Project for Bakery Management System

Database Design Project for Bakery Management System

Database Design Project for Bakery Management System This article of Database Design Project for Bakery Management System or Bakery Management System Database Design with ERD help to minimize the work …

Read more

Resort Management System Database Design with ERD

Resort Management System Database Design with ERD

Resort Management System Database Design with ERD This Resort Management System Database Design with ERD or ERD and Tables for Resort Management System provides you with accurate reservation tracking, excellent …

Read more

Database Design for Auto parts Income Monitoring System

Database Design for Auto parts Income Monitoring System The Database Design for Auto parts Income Monitoring System Project was designed since, the company or store haven’t already yet a system. …

Read more

Database Design for Grocery Management System

Database Design for Grocery Management System

This Database Design for Grocery Management System designed to handle grocery stock in, restock, sales, returns, purchase and other stuff. Point of Sales and Inventory System Database Design stable revenue system …

Read more

Database Design Project for PEPSI Monitoring Management System

Database Design Project for PEPSI Monitoring Management System

Database Design Project for PEPSI Monitoring Management System This Database Design Project for PEPSI Monitoring Management System or PEPSI Distribution Monitoring Management System Database Design with ERD also takes the …

Read more

Detainee Information Management System PHP Project

Detainee Information Management System

Detainee Information Management System PHP Project Detainee Information Management System PHP Project with Source Code. This system has almost complete features, from the searching of the name of the detainee …

Read more

Enrollment System Thesis Chapter 4 – Existing System

Enrollmnet System Thesis Chapter 4 Existing System

Enrollment System Thesis Chapter 4 – Existing System This article of Enrollment System Thesis Chapter 4 – Existing System or Chapter 4 Enrollment System Thesis Documentation shows the following such …

Read more

Enrollment System Thesis Chapter 5 – Proposed Solution

Enrollmnet System Thesis Chapter 5 Proposed Solution

Enrollment System Thesis Chapter 5 – Proposed Solution The Enrollment System Thesis Chapter 5 – Proposed Solution or (Chapter 5 Thesis Project for Enrollment System) ,Will includes all the detailed records about the entire study (Computerized …

Read more

Supply Management System Database Design with ERD

Supply Management System Database Design with ERD This Supply Management System Database Design with ERD or Database Design for Supply Management System with ERD and Tables is programmed using Java …

Read more

Database Design for Customer Management System

Database Design for Customer Management System

Database Design for Customer Management System This Database Design for Customer Management System or Customer Relationship Management System, is one of the DBMS Mini Project in which the customers of an enterprise are the …

Read more

Enrollment System Documentation Chapter 2

Enrollmnet System Documentation Chapter 2

Enrollment System Documentation Chapter 2 Within this chapter of Enrollment System Documentation Chapter 2 or Chapter 2 Thesis Enrollment System, the researchers present the related literature’s and systems to the …

Read more

Frequently Asked Questions

Are these deep learning projects free for capstone and thesis use?
Yes. All deep learning projects on this hub are free to download, modify, and submit. No attribution required for academic use. Most are MIT-licensed or include source-code packs with sample datasets and pretrained model weights.
What deep learning frameworks do I need installed?
Most projects use OpenCV (cv2) for video capture and image preprocessing, plus one of: TensorFlow / Keras (Caffe model loading via cv2.dnn, custom CNN training), PyTorch (research-style models, YOLO v5+, transformers), or MediaPipe (Google's optimized face/hand/pose detectors). Install with pip install opencv-python tensorflow keras torch torchvision mediapipe numpy. Python 3.10, 3.11, or 3.12 recommended (avoid 3.13 until all wheels catch up).
Do I need a GPU to run these deep learning projects?
For inference (running a pretrained model on your webcam): no, CPU runs at 15-30 FPS for most computer-vision tasks. For training a custom model on your own dataset: GPU strongly recommended (CPU works but is slow). Free GPU options: Google Colab Free (12-hour sessions, sufficient for most BSIT capstones), Kaggle Notebooks Free (30-hour weekly quota), Paperspace Free tier. No need to buy a $1000+ GPU just for a capstone defense.
Deep learning vs classical machine learning, which should I pick for my capstone?
Pick deep learning when your inputs are unstructured (images, audio, video, text) and you have 10,000+ training samples. Pick classical ML (random forest, SVM, logistic regression) for tabular data, small datasets (under 1,000 rows), or when you need explainable predictions for the panel. Many capstones combine both: deep learning for feature extraction (face embedding via FaceNet) plus classical ML on top (SVM classifier for identity matching).
Why is my OpenCV deep learning model running at 2 FPS?
Three usual causes: (1) Resolution too high, resize frames to 640x480 or 320x240 before inference. (2) Wrong cv2.dnn backend, set net.setPreferableBackend(cv2.dnn.DNN_BACKEND_OPENCV) and net.setPreferableTarget(cv2.dnn.DNN_TARGET_CPU). (3) Heavy model on weak hardware, swap YOLO v5 for MobileNet-SSD or use Haar cascades for simple face/eye detection. Also close other applications and disable laptop battery-save throttling.
Can I extend a single OpenCV demo into a full BSIT capstone?
Yes, and you should. A standalone webcam demo (face detection alone) is too narrow for capstone scope. Wrap it in a real system: face recognition becomes Real-Time Attendance System with PHP/MySQL dashboard, object detection becomes Smart CCTV Alert System with email notifications, drowsiness detection becomes Driver Monitoring System for fleet vehicles. Add user accounts, database logging, simple admin UI, and write Chapters 1-5 manuscript to satisfy panel requirements.
How often is this deep learning projects list updated?
New deep learning projects are added periodically as we receive student requests and new models become OpenCV-compatible. Last refreshed June 2026 with 19 vision-focused projects covering face recognition, object detection, traffic-sign classification, OCR, and more.