1 import java.awt.Color ; 2 import java.awt.Frame ; 3 import java.awt.GridLayout ; 4 import java.awt.Label ; 5 import java.awt.Panel ; 6 import java.awt.event.WindowAdapter ; 7 import java.awt.event.WindowEvent ; 8 import java.io.BufferedReader ; 9 import java.io.FileReader ; 10 import java.io.FileWriter ; 11 import java.io.PrintWriter ; 12 import java.util.StringTokenizer ; 13 14 import JSci.awt.DefaultGraph2DModel; 15 import JSci.maths.wavelet.FWTCoef; 16 import JSci.maths.wavelet.Signal; 17 import JSci.maths.wavelet.daubechies2.Daubechies2; 18 import JSci.maths.wavelet.daubechies3.Daubechies3; 19 import JSci.maths.wavelet.daubechies4.Daubechies4; 20 import JSci.maths.wavelet.daubechies5.Daubechies5; 21 import JSci.maths.wavelet.daubechies6.Daubechies6; 22 import JSci.maths.wavelet.daubechies7.Daubechies7; 23 import JSci.maths.wavelet.daubechies8.Daubechies8; 24 import JSci.swing.JGraphLayout; 25 import JSci.swing.JLineGraph; 26 27 36 public class Denoise extends Frame  37 { 38 public static void main( String [] args ) 39 { 40 Denoise denoise = new Denoise(); 41 } 42 43 protected Denoise() 44 { 45 super( "Denoise graphs" ); 46 addWindowListener( new WindowAdapter () { 47 public void windowClosing( WindowEvent evt ) 48 { 49 dispose(); 50 System.exit(0); 51 } 52 }); 53 setLayout( new GridLayout ( 3, 1 ) ); 54 setSize( 400, 800 ); 55 56 if ( readData() ) { 57 doCalcs(); 58 doDisplay(); 59 writeData(); 60 } 61 } 62 63 private Daubechies2 filter = new Daubechies2(); 66 70 71 private double[] noisy = null; 72 73 74 private double[] clean = null; 75 76 77 private int offset = 0; 78 79 80 private int nlines = 0; 81 82 83 private int maxlevel = 1; 84 85 86 public static final String INFILE = "galaxy.txt"; 87 88 89 public static final String OUTFILE = "galaxy_denoise.txt"; 90 91 92 public static double threshold = 0.5; 93 94 97 private boolean readData() 98 { 99 int filtertype = filter.getFilterType(); 100 101 try { 104 BufferedReader r = new BufferedReader ( new FileReader ( INFILE ) ); 105 String raw = null; 106 107 while ( ( raw = r.readLine() ) != null ) { 109 nlines++; 110 } 111 r.close(); 112 113 maxlevel = 1; 116 while ( nlines > Math.pow( 2.0, (double) maxlevel ) ) { 117 maxlevel++; 118 } 119 int count = (int) Math.pow( 2.0, (double) maxlevel ) + filtertype; 120 121 r = new BufferedReader ( new FileReader ( INFILE ) ); 123 noisy = new double[count]; 124 offset = count = ( count - nlines ) / 2; 125 StringTokenizer st = null; 126 while ( ( raw = r.readLine() ) != null ) { 127 st = new StringTokenizer ( raw ); 128 noisy[count++] = Float.parseFloat( st.nextToken() ); 129 } 130 r.close(); 131 132 double value = noisy[offset]; 134 for ( int i = 0; i < offset; i++ ) { 135 noisy[i] = value; 136 } 137 value = noisy[offset + nlines - 1]; 138 for ( int i = offset + nlines; i < noisy.length; i++ ) { 139 noisy[i] = value; 140 } 141 } 142 catch ( Exception e ) { 143 e.printStackTrace(); 144 return false; 145 } 146 return true; 147 } 148 149 154 private void doCalcs() 155 { 156 int level = Math.min( maxlevel - 4, 20 ); 160 161 Signal signal = new Signal( noisy ); 163 signal.setFilter( filter ); 164 FWTCoef signalCoeffs = signal.fwt( level ); 165 166 signalCoeffs.denoise( threshold ); 169 170 double[] rebuild = 172 signalCoeffs.rebuildSignal( filter ).evaluate( 0 ); 173 174 double[] trimmed = new double[nlines]; 176 System.arraycopy( noisy, offset, trimmed, 0, nlines ); 177 noisy = trimmed; 178 clean = new double[nlines]; 179 System.arraycopy( rebuild, offset, clean, 0, nlines ); 180 } 181 182 185 private void writeData() 186 { 187 try { 188 PrintWriter r = new PrintWriter ( new FileWriter ( OUTFILE ) ); 189 for ( int i = 0; i < clean.length; i++ ) { 190 r.println( clean[i] ); 191 } 192 r.close(); 193 } 194 catch (Exception e) { 195 e.printStackTrace(); 196 } 197 } 198 199 203 private void doDisplay() 204 { 205 DefaultGraph2DModel model1 = new DefaultGraph2DModel(); 206 model1.setXAxis( 0.0f, (float) noisy.length, noisy.length ); 207 model1.addSeries( noisy ); 208 model1.addSeries( clean ); 209 model1.setSeriesVisible( 1, true ); 210 211 Panel panel1 = new Panel (); 212 panel1.setLayout( new JGraphLayout() ); 213 Label title = new Label ( "Overlay graph", Label.CENTER ); 214 panel1.add( title, "Title" ); 215 JLineGraph graph1 = new JLineGraph( model1 ); 216 graph1.setColor(0, Color.red); 217 graph1.setColor(1, Color.blue); 218 panel1.add( graph1, "Graph" ); 219 add( panel1 ); 220 221 DefaultGraph2DModel model2 = new DefaultGraph2DModel(); 222 model2.setXAxis( 0.0f, (float) noisy.length, noisy.length ); 223 model2.addSeries( noisy ); 224 225 Panel panel2 = new Panel (); 226 panel2.setLayout( new JGraphLayout() ); 227 title = new Label ( "Raw data", Label.CENTER ); 228 panel2.add( title, "Title" ); 229 JLineGraph graph2 = new JLineGraph( model2 ); 230 graph2.setColor(0, Color.red); 231 panel2.add( graph2, "Graph" ); 232 add( panel2 ); 233 234 DefaultGraph2DModel model3 = new DefaultGraph2DModel(); 235 model3.setXAxis( 0.0f, (float) clean.length, clean.length ); 236 model3.addSeries( clean ); 237 238 Panel panel3 = new Panel (); 239 panel3.setLayout( new JGraphLayout() ); 240 title = new Label ( "Denoised data", Label.CENTER ); 241 panel3.add( title, "Title" ); 242 JLineGraph graph3 = new JLineGraph( model3 ); 243 graph3.setColor(0, Color.blue); 244 panel3.add( graph3, "Graph" ); 245 add( panel3 ); 246 247 setVisible( true ); 248 } 249 } 250
| Popular Tags
|