Skip to main content

Posts

Showing posts with the label GUI

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 ...

Create a Simple GUI using Python and PySimpleGUI

  Create a Simple GUI using Python and PySimpleGUI T oday, We are working on with a new python GUI package, which is simple and understandable. It was developed to ease the GUI development. You are not required to write many lines of code to build up a beautiful GUI. PySimpleGUI is  a wrapper for tkinter and PyQT. Web based applications can be developed easily using PySimpleGUI.  Installing PySimpleGUI: pip install pysimplegui pip3 install pysimplegui We can also use pip along with python to install packages: python - m pip install pysimplegui After finishing up all the steps above, now, let's get into the process of creating our first GUI application. Firstly, we need to import the PySimpleGUI package: import PySimpleGUI as sg Now, we have imported our GUI package and provided an alias for the package as  sg.  Next, we need to write a layout. Layout is the building block of our GUI, it consists of rows and columns. layout = [ [ sg . Text ( "Hello" ) ] ] Obser...