Skip to content

Commit

Permalink
Included PitchConverter into Util package.
Browse files Browse the repository at this point in the history
  • Loading branch information
JorenSix committed Feb 10, 2014
1 parent b34202a commit d72da05
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

import javax.swing.JComponent;

import be.hogent.tarsos.dsp.example.util.PitchConverter;
import be.hogent.tarsos.dsp.util.PitchConverter;
import be.hogent.tarsos.dsp.util.fft.FFT;

public class SpectrogramPanel extends JComponent implements ComponentListener{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

import javax.swing.JPanel;

import be.hogent.tarsos.dsp.example.util.PitchConverter;
import be.hogent.tarsos.dsp.util.PitchConverter;

public class UtterAsteriskPanel extends JPanel {

Expand Down
2 changes: 1 addition & 1 deletion src/be/hogent/tarsos/dsp/ui/layers/ConstantQLayer.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
import be.hogent.tarsos.dsp.AudioEvent;
import be.hogent.tarsos.dsp.AudioProcessor;
import be.hogent.tarsos.dsp.ConstantQ;
import be.hogent.tarsos.dsp.example.util.PitchConverter;
import be.hogent.tarsos.dsp.ui.Axis;
import be.hogent.tarsos.dsp.ui.CoordinateSystem;
import be.hogent.tarsos.dsp.util.PitchConverter;



Expand Down
2 changes: 1 addition & 1 deletion src/be/hogent/tarsos/dsp/ui/layers/FFTLayer.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
import be.hogent.tarsos.dsp.AudioDispatcher;
import be.hogent.tarsos.dsp.AudioEvent;
import be.hogent.tarsos.dsp.AudioProcessor;
import be.hogent.tarsos.dsp.example.util.PitchConverter;
import be.hogent.tarsos.dsp.ui.Axis;
import be.hogent.tarsos.dsp.ui.CoordinateSystem;
import be.hogent.tarsos.dsp.util.PitchConverter;
import be.hogent.tarsos.dsp.util.fft.FFT;


Expand Down
2 changes: 1 addition & 1 deletion src/be/hogent/tarsos/dsp/ui/layers/PitchContourLayer.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
import be.hogent.tarsos.dsp.AudioDispatcher;
import be.hogent.tarsos.dsp.AudioEvent;
import be.hogent.tarsos.dsp.AudioProcessor;
import be.hogent.tarsos.dsp.example.util.PitchConverter;
import be.hogent.tarsos.dsp.pitch.PitchDetectionHandler;
import be.hogent.tarsos.dsp.pitch.PitchDetectionResult;
import be.hogent.tarsos.dsp.pitch.PitchProcessor;
import be.hogent.tarsos.dsp.pitch.PitchProcessor.PitchEstimationAlgorithm;
import be.hogent.tarsos.dsp.ui.Axis;
import be.hogent.tarsos.dsp.ui.CoordinateSystem;
import be.hogent.tarsos.dsp.util.PitchConverter;


public class PitchContourLayer implements Layer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
*/

package be.hogent.tarsos.dsp.example.util;
package be.hogent.tarsos.dsp.util;


/**
Expand Down

0 comments on commit d72da05

Please sign in to comment.