Java
Sir,
My code is attached here...
When i run the program
The gui is visible..
When i click on feature button
The control goes to classes ShowImage and ColorInformation
From ShowImage the calculated values are showing through the method PrintTexturevalues and From ColorInformation the calculated values are showing through the method PrintColorevalues....
Now My Problem is.......
The values of these methods are shown in to two different gui..
I need to display everything in the first shown gui......
import java.io.*;
import java.awt.*;
import java.sql.*;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.*;
import java.awt.event.*;
import java.awt.image.*;
import javax.imageio.ImageIO;
public class Images {
File file;
JLabel JLabel1 = new JLabel("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n TEXTURE FEATURES \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",JLabel.CENTER);
JLabel JLabel4 = new JLabel(" Energy ");
final JTextField val1= new JTextField("",30);
JLabel JLabel5 = new JLabel(" Entropy ");
final JTextField val4= new JTextField("",30);
JLabel JLabel6 = new JLabel(" Contrast ");
final JTextField val5= new JTextField("",30);
JLabel JLabel7 = new JLabel(" Homogenity ");
final JTextField val6= new JTextField("",30);
JLabel JLabel8 = new JLabel(" Correlation ");
final JTextField val7= new JTextField("",30);
JLabel JLabel2 = new JLabel("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n COLOR FEATURES \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n ",JLabel.CENTER);
JLabel JLabel9 = new JLabel("Hue");
final JTextField val2=new JTextField("",20);
JLabel JLabel10 = new JLabel("Saturation");
final JTextField val8=new JTextField("",20);
JLabel JLabel11 = new JLabel("Value");
final JTextField val9=new JTextField("",20);
JLabel JLabel3 = new JLabel("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n SHAPE FEATURES \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",JLabel.CENTER);
final JTextField val3=new JTextField("",20);
JButton Button1 = new JButton("Browse");
JButton Button2 = new JButton("Add into database");
JButton Button3 = new JButton("Features");
Images(){
JFrame f = new JFrame("Image Database");
f.getContentPane().setLayout(null);
final JTextField text = new JTextField("", 20);
final JLabel l=new JLabel();
text.setBounds(10,10,120,20);
Button1.setBounds(140,10,100,20);
l.setBounds(250,10,500,400);
JLabel1.setBounds(10,50,200,15);
JLabel4.setBounds(10,90,200,20);
val1.setBounds(90,90,120,20);
JLabel5.setBounds(10,130,200,20);
val4.setBounds(90,130,120,20);
JLabel6.setBounds(10,170,200,20);
val5.setBounds(90,170,120,20);
JLabel7.setBounds(10,210,200,20);
val6.setBounds(90,210,120,20);
JLabel8.setBounds(10,250,200,20);
val7.setBounds(90,250,120,20);
JLabel2.setBounds(10,290,200,15);
JLabel9.setBounds(10,320,200,20);
val2.setBounds(90,320,120,20);
JLabel10.setBounds(10,350,200,20);
val8.setBounds(90,350,120,20);
JLabel11.setBounds(10,390,200,20);
val9.setBounds(90,390,120,20);
JLabel3.setBounds(10,450,200,15);
val3.setBounds(90,490,120,20);
Button2.setBounds(90,520,200,20);
Button3.setBounds(90,540,200,20);
f.setSize(1000,750);
f.setBackground(Color.GRAY);
f.setVisible(true);
f.add(text);
f.add(Button1);
f.add(l);
f.add(JLabel1);
f.add(JLabel4);
f.add(val1);
f.add(JLabel5);
f.add(val4);
f.add(JLabel6);
f.add(val5);
f.add(JLabel7);
f.add(val6);
f.add(JLabel8);
f.add(val7);
f.add(JLabel9);
f.add(JLabel2);
f.add(val2);
f.add(JLabel10);
f.add(val8);
f.add(JLabel11);
f.add(val9);
f.add(JLabel3);
f.add(val3);
f.add(Button2);
f.add(Button3);
Button1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
JFileChooser chooser = new JFileChooser();
chooser.addChoosableFileFilter(new ImageFileFilter());
final int returnVal = chooser.showOpenDialog(null);
if(returnVal == JFileChooser.APPROVE_OPTION) {
file = chooser.getSelectedFile();
String path=file.getPath();
text.setText(path);
l.setIcon(new ImageIcon(path));
}
}
});
Button2.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
String feature1 = val1.getText();
String feature4 = val4.getText();
String feature5 = val5.getText();
String feature6 = val6.getText();
String feature7 = val7.getText();
String feature2 = val2.getText();
String feature3 = val3.getText();
try{
Class.forName("com.mysql.jdbc.Driver");
System.out.println("Creating a Mysql Table to Store Java Types!");
Connection con = null;
String url = "jdbc:mysql://localhost:3306/";
String db = "cbir";
String driver = "com.mysql.jdbc.Driver";
String user = "root";
String pass = "root";
con = DriverManager.getConnection(url+db, user, pass);
PreparedStatement st = con.prepareStatement("insert into enhancement values(?,?,?,?,?,?,?,?)");
FileInputStream fis = new FileInputStream(file);
st.setString(1,feature1);
st.setString(2,feature4);
st.setString(3,feature5);
st.setString(4,feature6);
st.setString(5,feature7);
st.setString(6,feature2);
st.setString(7,feature3);
st.setBinaryStream(8, (InputStream)fis, (int)(file.length()));
int s = st.executeUpdate();
JOptionPane.showMessageDialog(null,"Data is successfully inserted.");
}
catch(Exception ex){}
}
});
Button3.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
String ImageName= file.getPath();
ShowImage si=new ShowImage(ImageName);
ColorInformation ci=new ColorInformation();
try {
ci.fun(ImageName);
} catch (IOException ex) {
Logger.getLogger(Images.class.getName()).log(Level.SEVERE, null, ex);
}
System.out.println("Completed");
}
}
);
/*void PrintTextureValues(long Energy, float Entropy, long Contrast, float Homogeneity, float Correlation)
{
val1.setText("dfas");
throw new UnsupportedOperationException("Not yet implemented");
}*/
}
void PrintTextureValues(String ener,String entro,String contra,String homo,String corre)
{
val1.setText(ener);
val4.setText(entro);
val5.setText(contra);
val6.setText(homo);
val7.setText(corre);
// throw new UnsupportedOperationException("Not yet implemented");
}
void PrintColorValues(String hue,String satur,String val)
{
val2.setText(hue);
val8.setText(satur);
val9.setText(val);
}
public static void main(String args[]) {
Images img=new Images();
}
/* void PrintTextureValues(long Energy, float Entropy, long Contrast, float Homogeneity, float Correlation)
{
val1.setText("ss");
//throw new UnsupportedOperationException("Not yet implemented");
}*/
}
class ImageFileFilter extends javax.swing.filechooser.FileFilter {
public boolean accept(File file) {
if (file.isDirectory()) return false;
String name = file.getName().toLowerCase();
return (name.endsWith(".jpg") || name.endsWith(".png")|| name.endsWith(".gif"));
}
public String getDescription() { return "Images (*.gif,*.bmp, *.jpg, *.png )"; }
}
/************************************************************/
View Answers
Related Tutorials/Questions & Answers:
javajava diff bt core
java and
java Advertisements
java java why iterator in
java if we for loop
Java Java Whether
Java is pure object oriented Language
JAVAJAVA how the name came for
java language as "
JAVA javajava explain technologies are used in
java now days and structure
java javajava different between
java & core
java javajava is
java open source
javajava what is
java reflection
java java in
java does not pointers concept but what is nullpointers in
java?
nullpointer is a runtime Exception
javawhat is the size of array in
java ? what is the size of array in
java ?
what is the mean of finalize in
java javajava why to set classpath in
java javajava RARP implementation using
java socket
javajava sample code for RARP using
java JavaJava how to do
java in command prompt
javajava how use
java method
javajava is
java purely object oriented language
javajava why multiple inheritance is not possible in
java javajava give a simple example for inheritance in
java javajava give a simple example for inheritance in
java javajava why to set classpath in
java javajava why to set classpath in
java javajava why to set classpath in
java java java What is ?static? keyword
javajava Does
java allows multiline comments
javajava Write a
java code to print "ABABBABCABABBA
javajava write a program in
java to acess the email
javajava send me
java interview questions
javajava what are
JAVA applications development tools
JavaJava Whether
Java is Programming Language or it is SOftware
javajava explain object oriented concept in
java java java difference between class and interface
JavaJava how to draw class diagrams in
java javajava write a
java program using filenotfoundexception
javajava how to edit text document by using
java
then how to edit starting and ending of text document by using
java javajava different between
java & core
java
print("code sample
java java how can use sleep in
java
which book learn of
java language
java java How to set
java Policy for applet using jdk 6
javajava pattern code for a given words
java pattern code for a given words pattern
javajava dear,
i want a field for date picker using
java/
java script
javajava create
java program for delete and update the details,without using database, just a normal
java program
javajava why methods in
java raise exceptions
Have a look at the following link:
Java Exceptions
javajava code to search the nodes how to write the
java code to search the nodes using routers
javajava online telephone directory i need coding for online telephone directory..by using
java....pls help me
javajava different between
java & core
java
print("code sample
javajava how to invoke one chart
java file from another
java file
javajava how to prepare the
java
Hi Friend,
If you want to learn how to install
java, creating and running a
java program then go through the following links:
http://www.roseindia.net/
java/beginners/index.shtml
http
javajava
java swing
Swing is a principal GUI toolkit for the
Java programming language. It is a part of the JFC (
Java Foundation Classes), which is an API for providing a graphical user interface for
Java programs
javajava what is the need of
java if
java is not there what will happen... work unless you have
Java installed, and more are created every day.
Java... to scientific supercomputers, cell phones to the Internet,
Java is everywhere!
http