internal static ArrayList run(string filename)
    {
        modshogun.init_shogun_with_defaults();
        StringFileCharFeatures f = new StringFileCharFeatures(fname, RAWBYTE);

        ArrayList result = new ArrayList();
        result.Add(f);

        modshogun.exit_shogun();
        return result;
    }
    internal static ArrayList run(string fname)
    {
        modshogun.init_shogun_with_defaults();

        StringFileCharFeatures f = new StringFileCharFeatures(fname, RAWBYTE);
        //f.save_compressed("foo_uncompressed.str", UNCOMPRESSED, 1);

        StringCharFeatures f2 = new StringCharFeatures(RAWBYTE);
        f2.load_compressed("foo_uncompressed.str", true);

        //f.save_compressed("foo_lzo.str", LZO, 9);
        f2 = new StringCharFeatures(RAWBYTE);
        f2.load_compressed("foo_lzo.str", true);

        //f.save_compressed("foo_gzip.str", GZIP, 9);
        f2 = new StringCharFeatures(RAWBYTE);
        f2.load_compressed("foo_gzip.str", true);

        //f.save_compressed("foo_bzip2.str", BZIP2, 9);
        f2 = new StringCharFeatures(RAWBYTE);
        f2.load_compressed("foo_bzip2.str", true);

        //f.save_compressed("foo_lzma.str", LZMA, 9);
        f2 = new StringCharFeatures(RAWBYTE);
        f2.load_compressed("foo_lzma.str", true);

        f2 = new StringCharFeatures(RAWBYTE);
        f2.load_compressed("foo_lzo.str", false);
        //f2.add_preprocessor(new DecompressCharString(LZO));
        f2.apply_preprocessor();

        f2 = new StringCharFeatures(RAWBYTE);
        f2.load_compressed("foo_lzo.str", false);
        //f2.add_preprocessor(new DecompressCharString(LZO));
        f2.enable_on_the_fly_preprocessing();
        ArrayList result = new ArrayList();

        modshogun.exit_shogun();
        return result;
    }
 internal static HandleRef getCPtr(StringFileCharFeatures obj) {
   return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
 }
Example #4
0
 internal static HandleRef getCPtr(StringFileCharFeatures obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }