Mini Projects

Java Web Browser

A basic java web browser which provides all the functions of a normal web browser. Not much good support for cookies but all other functions are well supported. You can download this free software project. It can be used as a mini project in academic purposes. Code : import java.awt.*; import java.awt.event.*; import java.io.*; import …

Java Web Browser Read More »

Bank Account Simulation

This project helps in maintaining and accesing the bank accounts Code : /********************************************************** * Program to create GUI for Bank Account Simulation. * ***********************************************************/ import java.awt.*; import java.awt.event.*; import javax.swing.*; class GuiAccTest extends Frame implements ActionListener { Label lab=new Label(” “); Label lab1=new Label(” “); TextField t[]=new TextField [4]; Label l[]=new Label [4]; Button but=new …

Bank Account Simulation Read More »

Create Distance Transforn of Binary Image

This is a image processing program which performs the distance transform of a binary image.Distance transform is widely used for image thinning and finding skeleton of an image. //1:newfndistrans.java //2:A bmp monochrome image(preferably 512-512) //make the image from mspaint or any other source import java.io.*; import javax.swing.*; import java.awt.*; import java.awt.event.*; public class newfndistrans extends …

Create Distance Transforn of Binary Image Read More »