Package com.meapsoft

Examples of com.meapsoft.FeatFile


    // path to blip wav file
    String blipWav = "data" + System.getProperty("file.separator") + "blip.wav";

  public BlipComposer(String featFN, String outFN)
  {
    this(new FeatFile(featFN), new EDLFile(outFN));
  }
View Full Code Here


    // parse arguments
    int ind = opt.getOptind();
    if(ind > args.length)
      printUsageAndExit();
       
    featFile = new FeatFile(args[args.length-1]);
    outFile = new EDLFile(outFileName);

    System.out.println("Composing " + outFileName +
               " from " +  args[args.length-1] + ".");
  }
View Full Code Here

                GUIUtils.ShowDialog("VQComposer: Please select a valid feature file!",
                                    GUIUtils.MESSAGE, mParentTab.mMainScreen);
                return -1;
            }
            else
                vqc.setFeatsToQuantize(new FeatFile(vqFeaturesNameFull));
        }

        if(mQuantizeChk.isSelected())
            vqc.setFeatsToQuantize(mParentTab.featFile);
     
View Full Code Here

    this(featFN, outFN, new EuclideanDist());
  }

  public SortComposer(String featFN, String outFN, ChunkDist cd)
  {
    this(new FeatFile(featFN), new EDLFile(outFN), cd);
  }
View Full Code Here

    // parse arguments
    int ind = opt.getOptind();
    if (ind > args.length)
      printUsageAndExit();

    featFile = new FeatFile(args[args.length - 1]);
    outFile = new EDLFile(outFileName);

    System.out.println("Composing " + outFileName + " from "
        + args[args.length - 1] + ".");
  }
View Full Code Here

  int numPositions = 1;
  boolean rotateRight = true;
 
  public RotComposer(String featFN, String outFN, int beatsPerMeasure, int numPositions, boolean left)
  {
    this(new FeatFile(featFN), new EDLFile(outFN), beatsPerMeasure, numPositions, left);
  }
View Full Code Here

    // parse arguments
    int ind = opt.getOptind();
    if(ind > args.length)
      printUsageAndExit();
       
    featFile = new FeatFile(args[args.length-1]);
    outFile = new EDLFile(outFileName);

    System.out.println("Composing " + outFileName +
               " from " +  args[args.length-1] + ".");
  }
View Full Code Here

    // parse arguments
    int ind = opt.getOptind();
    if (ind > args.length)
      printUsageAndExit();

    trainFile = new FeatFile(args[args.length - 1]);
    outFile = new EDLFile(outFileName);

    System.out.println("Composing " + outFileName + " from "
        + args[args.length - 1] + ".");
  }
View Full Code Here

        transitionMatrix[x][y] /= s;
    }

    if (debug)
    {
      FeatFile f = new FeatFile("tmp");
      f.chunks = templateChunks;
      DSP.imagesc(f.getFeatures(), "codebook");
      DSP.imagesc(transitionMatrix, "transitionMatrix");
      DSP.imagesc(startProbs, "startProbs");
    }
  }
View Full Code Here

    initNameAndDescription("IntraChunkShuffle", new String(oldDesc));
  }
 
  public IntraChunkShuffleComposer(String featFN, String outFN, int chunks)
  {
    this(new FeatFile(featFN), new EDLFile(outFN), chunks);
  }
View Full Code Here

TOP

Related Classes of com.meapsoft.FeatFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.