Skip to main content

Posts

Showing posts with the label final year projects

Final Year Project - Iris Recognition for Credit Card Fraud Detection with Python

Iris Recognition for Fraud Detection Project Images Product Description Iris Recognition is a an application developed using Python. A GUI based iris recognition system made with  PySimpleGUI . Integrated with MySQL database. Customers can register their account, while creating the user account card details will be generated automatically and will be mailed to the customers. They can then login and upload their iris image choosing which part of the eye to be uploaded. Customers can withdraw amount from their account : during the process, users can upload an iris image and compare with their existing image in the database. If the verification was successful payment will be done, else will show error message. (Supported only .BMP images) --------------USERS OF THE SYSTEM------------------ Customer : Can Register Can Login Deposit Amount Withdraw Amount Upload Iris Image View Transaction Details Visualize Iris Recognition Sequence Admin Can Add Customer Generate ATM Card Details View ...

How to Connect PHP to MySQL Database?

  How to Connect PHP to MySQL Database? In this tutorial we will be learning about how to connect to MySQL Database Management System with PHP. Some Points on MySQL MySQL uses Standard SQL MySQL is free to download MySQL is best suitable for Small and Large Applications Some Points on PHP PHP is a server scripting language PHP scripts are executed in server and pure HTML is returned back to client. PHP files have extension  .php PHP is easy to Learn and implement PHP supports both Structural Programming Paradigm and Object Oriented Programming Paradigm. 1. First, Let's create a Database in MySQL CREATE DATABASE TestDB ; 2. Let's create a Table in TestDB CREATE TABLE testTABLE ( id INT , Fname VARCHAR ( 50 ) , Lname VARCHAR ( 50 ) , EmailID VARCHAR ( 120 ) ) ; 3. Let's Connect to TestDB $mysql_host = "localhost" ; //host address may vary. ex : localhost:3302 $mysql_user = "root" ; //Given by your hosting provider $mysql_pass = ...

OpenGL program project on Sinking Ship

   OpenGL program project on Sinking Ship # include <stdio.h> # include <GL/glut.h> # include <stdlib.h> # include <GL/freeglut.h> # include <time.h> # include <bits/stdc++.h> # define WIDTH 768 # define HEIGHT 1024 using namespace std ; typedef struct { GLfloat x ; GLfloat y ; GLfloat z ; } vec3f ; const vec3f _FONT_SIZE_NORMAL = { 0.5f , 0.5f , 1.0f } ; const vec3f _FONT_SIZE_BIG = { 1.0f , 1.0f , 1.0f } ; const vec3f _FONT_SIZE_SMALL = { 0.25f , 0.25f , 1.0f } ; const vec3f * FONT_SIZE_NORMAL = & _FONT_SIZE_NORMAL ; const vec3f * FONT_SIZE_BIG = & _FONT_SIZE_BIG ; const vec3f * FONT_SIZE_SMALL = & _FONT_SIZE_SMALL ; struct timespec tim , tim2 ; void sun ( ) ; void ice ( ) ; void sky ( ) ; void display ( ) ; void display0 ( ) ; void display1 ( ) ; void display2 ( ) ; void display3 ( ) ; void display4 ( ) ; void ship ( int , double ) ; void rescueShip ( int , double ) ; void d...