Thursday, April 28, 2016

Whiteboard Animation

This program draws a B/W image on the screen. To mimic drawing on a whiteboard, it utilizes Thread class so that different parts of the image are shown in an orderly manner, based on the input from the user. Two BufferedImage objects are used here, one for the image and the other for the whiteboard marker.



  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
import java.awt.*;
import java.awt.event.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.*;
import javax.imageio.ImageIO;
import javax.swing.*;
import javax.swing.event.*;

public class WhiteboardAnimation extends JFrame{
    private JPanel pmain=null;
    private BufferedImage bufimage=null;
    private int width=0;
    private int height=0;
    private int pixel[]=null;
    private int pixelblack[]=null;
    private int pixelposx[]=null;
    private int pixelposy[]=null;
    private ArrayList<Integer> px=null;
    private ArrayList<Integer> py=null;
    private boolean bstartclicked=false;
    private BufferedImage bufimage2=null;
    private int pospenx=0;
    private int pospeny=0;
    
    public WhiteboardAnimation(){
        super("Whiteboard Animation");
        setSize(400,450);
        
        JButton bopen=new JButton("Open");
        bopen.addActionListener(new ButtonHandler());
        
        pmain=new PanelDraw();
        pmain.setPreferredSize(new Dimension(400,400));
        pmain.addMouseListener(new MouseHandler());
        pmain.addMouseMotionListener(new MouseHandler());
        
        JButton bstart=new JButton("Start");
        bstart.addActionListener(new ButtonHandler());
        
        setLayout(new BorderLayout());
        add("North",bopen);
        add("Center",pmain);
        add("South",bstart);
        
        px=new ArrayList<Integer>();
        py=new ArrayList<Integer>();
        
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        show();
    }
    
    class ButtonHandler implements ActionListener{
        public void actionPerformed(ActionEvent e){
            if(e.getActionCommand()=="Open"){
                FileDialog fd=new FileDialog(WhiteboardAnimation.this,"Open Image File",FileDialog.LOAD);
                fd.setDirectory("C:\\");
                fd.setVisible(true);
                String directory=fd.getDirectory();
                String filename=fd.getFile();
                if (filename!= null){
                    try{
                        bufimage=ImageIO.read(new File(directory+filename));
                    }catch(Exception ex){
                    }
                }
                
                width=bufimage.getWidth();
                height=bufimage.getHeight();

                int counter=0;
                int numblack=0;
                pixel=new int[width*height];
                for(int i=0;i<height;i++){
                    for(int j=0;j<width;j++){
                        pixel[counter]=bufimage.getRGB(j,i);
                        if(pixel[counter]!=-1){
                           numblack++;
                        }
                        counter++;
                    }
                }
                
                pixelblack=new int[numblack];
                pixelposx=new int[numblack];
                pixelposy=new int[numblack];
                counter=0;
                int counter2=0;
                for(int i=0;i<height;i++){
                    for(int j=0;j<width;j++){
                        //pixel[counter]=bufimage.getRGB(j,i);
                        if(pixel[counter]!=-1){
                           pixelblack[counter2]=pixel[counter];
                           pixelposx[counter2]=j;
                           pixelposy[counter2]=i;
                           counter2++;
                        }
                        counter++;
                    }
                }
                
                repaint();
            }
            if(e.getActionCommand()=="Start"){
                bstartclicked=true;
                
                try{
                    bufimage2=ImageIO.read(new File("marker.png"));
                }catch(Exception ex){
                }
                
                Thread t=new Thread(new WBMarker());
                t.start();
            }
        }
    }
    
    class WBMarker implements Runnable{
        public WBMarker(){
            try{
                bufimage=ImageIO.read(new File("blank.png"));
            }catch(Exception e){
            }
            
            repaint();
        }
        
        public void run(){
            if(!px.isEmpty()){
                for(int i=0;i<px.size();i++){
                    for(int j=0;j<pixelblack.length;j++){    
                        if(pixelposx[j]<=px.get(i)+10&&pixelposy[j]<=py.get(i)+10&&
                           pixelposx[j]>=px.get(i)-10&&pixelposy[j]>=py.get(i)-10){
                            bufimage.setRGB(pixelposx[j],pixelposy[j],pixelblack[j]);
                            pospenx=pixelposx[j];
                            pospeny=pixelposy[j];
                            pmain.repaint();
                            try{   
                                Thread.currentThread().sleep(1);
                            }catch(Exception ex){
                            }
                        }    
                    }
                }
            }
        }
    }
    
    class PanelDraw extends JPanel{
        public void paintComponent(Graphics g){
            super.paintComponent(g);
            
            Graphics2D g2=(Graphics2D)g;
            
            if(bufimage!=null){
                g2.drawImage(bufimage,0,0,null);
             
                if(!px.isEmpty()&&bstartclicked==false){
                    for(int i=0;i<px.size();i++){
                        g2.drawOval(px.get(i)-10,py.get(i)-10,20,20);
                    }
                }
            }
            
            if(bufimage2!=null){
                g2.drawImage(bufimage2,pospenx,pospeny-50,null);
            }
        }
    }
    
    class MouseHandler implements MouseMotionListener, MouseListener{
        public void mouseMoved(MouseEvent e){
            
        }
        public void mouseDragged(MouseEvent e){
            
        }
        public void mouseEntered(MouseEvent e){
        
        }
        public void mouseExited(MouseEvent e){
            
        }
        public void mouseReleased(MouseEvent e){           
            
        }
        public void mousePressed(MouseEvent e){
            
        }
        public void mouseClicked(MouseEvent e){
            int order=px.size();
            //System.out.println(order);
            px.add(order,e.getX());
            py.add(order,e.getY());
            repaint();
        }
    }     
        
    
    public static void main(String[] args){
        new WhiteboardAnimation();
    }
}

Sunday, April 24, 2016

Verb Memorizer

This is just a simple program to memorize French verbs. It utilizes the System.currentTimeMillis() method to determine the verb to be displayed. User input is also taken into account. Verbs that are answered wrong by the user will appear more often.




  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
import java.awt.*;
import java.awt.event.*;
import java.io.BufferedWriter;
import java.io.FileInputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
import javax.swing.*;
import javax.swing.event.*;

public class WordMemorizer extends JFrame{
    private JButton bstart=null;
    private int idtemp;
    private ArrayList<String> alid=null;
    private ArrayList<String> alfr=null;
    private ArrayList<String> alen=null;
    private ArrayList<String> alval=null;
    private ArrayList<String> altime=null;
    private JLabel lfr=null;
    private ButtonGroup bg=null;
    private JRadioButton lena,lenb,lenc,lend=null;
    
    public WordMemorizer(){
        super("Word Memorizer");
        setSize(400,400);
        
        bstart=new JButton("NEXT");
        bstart.addActionListener(new ButtonHandler());
        
        alid=new ArrayList<String>();
        alfr=new ArrayList<String>();
        alen=new ArrayList<String>();
        alval=new ArrayList<String>();
        altime=new ArrayList<String>();
        
        lfr=new JLabel();
        bg=new ButtonGroup();
        lena=new JRadioButton();
        lena.addActionListener(new RadioHandler());
        lenb=new JRadioButton();
        lenb.addActionListener(new RadioHandler());
        lenc=new JRadioButton();
        lenc.addActionListener(new RadioHandler());
        lend=new JRadioButton();
        lend.addActionListener(new RadioHandler());
        bg.add(lena); bg.add(lenb); bg.add(lenc); bg.add(lend);
        
        setLayout(new BorderLayout());
        
        JPanel pmain=new JPanel();
        GridBagConstraints gbc = new GridBagConstraints();
        gbc.gridx = 0;
        gbc.gridy = 0;
        gbc.insets=new Insets(5,0,0,0);
        pmain.setLayout(new GridBagLayout());
        pmain.add(lfr);
        gbc.gridy++;
        pmain.add(lena,gbc);
        gbc.gridy++;
        pmain.add(lenb,gbc);
        gbc.gridy++;
        pmain.add(lenc,gbc);
        gbc.gridy++;
        pmain.add(lend,gbc);
        add("Center",pmain);
        add("South",bstart);
        
        showWord();
        
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        show();
    }
    
    class RadioHandler implements ActionListener{
        public void actionPerformed(ActionEvent e){
            boolean answer=false;
            if(e.getSource()==lena){
                String stemp=lena.getText();
                if(stemp.equals(alen.get(Integer.valueOf(idtemp).intValue()))){
                    answer=true;
                }
            }
            if(e.getSource()==lenb){
                String stemp=lenb.getText();
                if(stemp.equals(alen.get(Integer.valueOf(idtemp).intValue()))){
                    answer=true;
                }
            }
            if(e.getSource()==lenc){
                String stemp=lenc.getText();
                if(stemp.equals(alen.get(Integer.valueOf(idtemp).intValue()))){
                    answer=true;
                }
            }
            if(e.getSource()==lend){
                String stemp=lend.getText();
                if(stemp.equals(alen.get(Integer.valueOf(idtemp).intValue()))){
                    answer=true;
                }
            }
            
            FileWriter fw=null;
            try{
                fw=new FileWriter("French.txt");
            }catch(IOException ex){
            
            }
            BufferedWriter bw=new BufferedWriter(fw);
            try{
                for(int i=0;i<alid.size();i++){
                    if(alfr.get(i).equals(lfr.getText())){
                        altime.set(i,System.currentTimeMillis()+"");
                        int result=Integer.valueOf(alval.get(i)).intValue();
                        if(answer==true){
                            result=result+1;
                            alval.set(i,result+"");
                        }
                        else{
                            result=result-1;
                            alval.set(i,result+"");
                        }
                    }
                    String stemp=alid.get(i)+"|"+alfr.get(i)+"|"+alen.get(i)+"|"+alval.get(i)+"|"+altime.get(i);
                    bw.write(stemp,0,stemp.length());
                    bw.newLine();
                }
            }catch(Exception ex){
            
            }
            try{
                bw.close();
            }catch(Exception ex){
            
            }                
        }
    }
    
    class ButtonHandler implements ActionListener{
        public void actionPerformed(ActionEvent e){
            showWord();
        }
    }
    
    public void showWord(){
        idtemp=0;
        alid.clear();
        alfr.clear();
        alen.clear();
        alval.clear();
        altime.clear();
        lfr.setText("");
        bg.clearSelection();
        lena.setText("");
        lenb.setText("");
        lenc.setText("");
        lend.setText("");
            
        try{    
            InputStreamReader isr=new InputStreamReader(new FileInputStream("French.txt"),"UTF-8");
            Scanner sc=new Scanner(isr);
            while(sc.hasNext()){
                String st=sc.nextLine().trim();
                StringTokenizer stoken=new StringTokenizer(st,"|");
                st=stoken.nextToken();
                alid.add(st.trim());
                st=stoken.nextToken();
                alfr.add(st.trim());
                st=stoken.nextToken();
                alen.add(st.trim());
                st=stoken.nextToken();
                alval.add(st.trim());
                st=stoken.nextToken();
                altime.add(st.trim());
                isr.close();
            }
        }catch(Exception ex){
            System.err.println(ex);
        }
        
        boolean valcatch=false;
        for(int i=0;i<alval.size();i++){
            if(Integer.valueOf(alval.get(i)).intValue()<3){
                valcatch=true;
            }
        }
        if(valcatch==false){
            lfr.setText("Finish!");
            FileWriter fw=null;
            try{
                fw=new FileWriter("French.txt");
            }catch(IOException ex){
            
            }
            BufferedWriter bw=new BufferedWriter(fw);
            try{
                for(int i=0;i<alid.size();i++){
                    alval.set(i,"0");
                    String curtime=System.currentTimeMillis()+"";
                    altime.set(i,curtime);
                    String stemp=alid.get(i)+"|"+alfr.get(i)+"|"+alen.get(i)+"|"+alval.get(i)+"|"+altime.get(i);
                    bw.write(stemp,0,stemp.length());
                    bw.newLine();
                }
            }catch(Exception ex){
            
            }
            try{
                bw.close();
            }catch(Exception ex){
            
            }            
            return;
        }
        
        Double timetemp=Double.valueOf(altime.get(0)).doubleValue();
        for(int i=1;i<altime.size();i++){
            if(Double.valueOf(altime.get(i)).doubleValue()<timetemp){
                if(Integer.valueOf(alval.get(i)).intValue()<3){
                    idtemp=Integer.valueOf(alid.get(i));
                    break;
                }
            }
        }
        
        System.out.println(idtemp);
        
        lfr.setText(alfr.get(idtemp));
        
        Random rand=new Random();
        String ans[]={alen.get(idtemp),"","",""};
        for(int i=1;i<4;i++){
            while(true){
                String stemp=alen.get(rand.nextInt(alen.size()));
                if(!ans[0].equals(stemp)&&!ans[1].equals(stemp)&&!ans[2].equals(stemp)&&!ans[3].equals(stemp)){
                    ans[i]=stemp;
                    break;
                }
            }
        }
        for(int i=0;i<4;i++){
            while(true){
                String stemp=ans[rand.nextInt(4)];
                boolean val=false;
                if(!lena.getText().equals(stemp)&&!lenb.getText().equals(stemp)&&!lenc.getText().equals(stemp)&&!lend.getText().equals(stemp)){
                    switch(i){
                        case 0:
                            lena.setText(stemp);
                            val=true;
                            break;
                        case 1:
                            lenb.setText(stemp);    
                            val=true;
                            break;
                        case 2:
                            lenc.setText(stemp);
                            val=true;
                            break;
                        case 3:
                            lend.setText(stemp);
                            val=true;
                            break;    
                    }
                }
                if(val==true)
                    break;
            }
        }
    }
    
    public static void main(String[] args){
        new WordMemorizer();
    }
}

Wednesday, April 20, 2016

BW Image Converter

This short program turns a color image into black and white. The user can set the threshold for the RGB value to remove. All pixels with an RGB value higher than that wil be removed. Clicking the BW button will turn the image pure black/white.



  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
import java.awt.*;
import java.awt.event.*;
import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;
import javax.swing.*;
import javax.swing.event.*;

public class BWImageMaker extends JFrame{
    private BufferedImage bufimage=null;
    private ImageIcon icon=null;
    private JLabel label=null;    
    private JScrollBar sbpixel=null;
    private JLabel lmessage=null;
    private String filepath="";
    
    public BWImageMaker(){
        super("BW Image Maker");
        setSize(400,500);
        
        JButton bopen=new JButton("Open");
        bopen.addActionListener(new ButtonHandler());
        
        JPanel pmain=new JPanel();
        label=new JLabel();    
        pmain.add(label);
        
        lmessage=new JLabel("");
        
        sbpixel=new JScrollBar(JScrollBar.HORIZONTAL,255,0,0,255);
        sbpixel.addAdjustmentListener(new ScrollBarHandler());
        
        JButton bbw=new JButton("BW");
        bbw.addActionListener(new ButtonHandler());
        
        JButton bsave=new JButton("Save");
        bsave.addActionListener(new ButtonHandler());
        
        JPanel pdown=new JPanel();
        pdown.setPreferredSize(new Dimension(400,80));
        pdown.setLayout(new GridLayout(4,1));
        pdown.add(lmessage);
        pdown.add(sbpixel);
        pdown.add(bbw);
        pdown.add(bsave);

        setLayout(new BorderLayout());
        add("North",bopen);
        add("Center",pmain);
        add("South",pdown);
        
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        show();
    }
    
    class ButtonHandler implements ActionListener{
        public void actionPerformed(ActionEvent e){
            if(e.getActionCommand()=="Open"){
                JFileChooser fc=new JFileChooser();
                int val=fc.showOpenDialog(BWImageMaker.this);
                if(val==JFileChooser.APPROVE_OPTION) {
                    filepath=fc.getSelectedFile().getPath();
                }                
                if (filepath!= null){
                    try{
                        bufimage=ImageIO.read(new File(filepath));
                    }catch(Exception ex){
                    }
                    icon=new ImageIcon(bufimage);
                    label.setIcon(icon);
                }
                sbpixel.setValue(255);
            }
            if(e.getActionCommand()=="Save"){
                JFileChooser fc=new JFileChooser();
                int val=fc.showSaveDialog(BWImageMaker.this);                
                if (val==JFileChooser.APPROVE_OPTION) {
                    try{
                        File fileToSave=fc.getSelectedFile();
                        ImageIO.write(bufimage,"jpg",new File(fileToSave.getName()+".jpg"));
                    }catch(Exception ex){
                        
                    }
                }                         
            }
            if(e.getActionCommand()=="BW"){
                if(bufimage==null){
                    return;
                }
                
                int width=bufimage.getWidth();
                int height=bufimage.getHeight();

                int counter=0;
                int pixels[]=new int[width*height];
                for(int i=0;i<height;i++){
                    for(int j=0;j<width;j++){
                        pixels[counter]=bufimage.getRGB(j,i);
                        counter++;
                    }
                }
                
                counter=0;
                for(int i=0;i<height;i++){
                    for(int j=0;j<width;j++){
                        if(pixels[counter]!=-1){
                           pixels[counter]=0; 
                           bufimage.setRGB(j,i,pixels[counter]);
                        }
                        counter++;
                    }
                }                
                icon=new ImageIcon(bufimage);
                label.setIcon(icon);                 
            }
        }    
    }
    
    class ScrollBarHandler implements AdjustmentListener{
        public void adjustmentValueChanged(AdjustmentEvent e){
            if(e.getSource()==sbpixel){
                if(bufimage==null){
                    return;
                }
                
                if(filepath!= null){
                    try{
                        bufimage=ImageIO.read(new File(filepath));
                    }catch(Exception ex){
                    }
                    icon=new ImageIcon(bufimage);
                    label.setIcon(icon);
                }                
                
                int width=bufimage.getWidth();
                int height=bufimage.getHeight();

                int counter=0;
                int pixels[]=new int[width*height];
                for(int i=0;i<height;i++){
                    for(int j=0;j<width;j++){
                        pixels[counter]=bufimage.getRGB(j,i);
                        counter++;
                    }
                }
                
                int pixremoved=sbpixel.getValue();
                lmessage.setText("Value: "+pixremoved);
                
                counter=0;
                for(int i=0;i<height;i++){
                    for(int j=0;j<width;j++){
                        Color c = new Color(pixels[counter]);
                        int red=c.getRed();
                        int green=c.getGreen();
                        int blue=c.getBlue();
                        if(red>=pixremoved||green>=pixremoved||blue>=pixremoved){
                            bufimage.setRGB(j,i,-1);
                        }
                        else{
                            bufimage.setRGB(j,i,pixels[counter]);
                        }
                        counter++;
                    }
                }                
                icon=new ImageIcon(bufimage);
                label.setIcon(icon); 
            }         
        }
    }
    
    public static void main(String[] args){
        new BWImageMaker();
    }
}