class IOAscii

Handles the standard Ascii sequence format in Torch.

Inheritance:


Public Methods

[more] IOAscii(const char* filename_, bool one_file_is_one_sequence_=false, int max_load_=-1)
Reads the sequence contained in filename.
[more]static void saveSequence(XFile* file, Sequence* sequence)
Saves one sequence in file using the ascii format


Inherited from IOSequence:

Public Fields

oint n_sequences
oint frame_size

Public Methods

ovirtual int getNumberOfFrames(int t)
ovirtual void getSequence(int t, Sequence* sequence)
ovirtual int getTotalNumberOfFrames()


Inherited from Object:

Public Fields

oAllocator* allocator

Public Methods

ovoid addOption(const char* name, int size, void* ptr, const char* help="")
ovoid addIOption(const char* name, int* ptr, int init_value, const char* help="")
ovoid addROption(const char* name, real* ptr, real init_value, const char* help="")
ovoid addBOption(const char* name, bool* ptr, bool init_value, const char* help="")
ovoid addOOption(const char* name, Object** ptr, Object* init_value, const char* help="")
ovoid setOption(const char* name, void* ptr)
ovoid setIOption(const char* name, int option)
ovoid setROption(const char* name, real option)
ovoid setBOption(const char* name, bool option)
ovoid setOOption(const char* name, Object* option)
ovirtual void loadXFile(XFile* file)
ovirtual void saveXFile(XFile* file)
ovoid load(const char* filename)
ovoid save(const char* filename)
ovoid* operator new(size_t size, Allocator* allocator_=NULL)
ovoid* operator new(size_t size, Allocator* allocator_, void* ptr_)
ovoid operator delete(void* ptr)


Documentation

Handles the standard Ascii sequence format in Torch. The format is the following:

o IOAscii(const char* filename_, bool one_file_is_one_sequence_=false, int max_load_=-1)
Reads the sequence contained in filename. If one_file_is_one_sequence is false, getSequence() will return one sequence with one frame at each call. (If calling getSequence(t, foo), it will put in the sequence foo the frame corresponding to the line t of the file). Note also that if one_file_is_one_sequence is false, the access to the IO must be sequential when calling getSequence(). If max_load_ is positive, it loads only the first max_load_ frames, if one_file_is_one_sequence is false. The file will be opened when reading the first sequence, and closed when reading the last one.

ostatic void saveSequence(XFile* file, Sequence* sequence)
Saves one sequence in file using the ascii format


This class has no child classes.
Author:
Ronan Collobert (collober@idiap.ch)

Alphabetic index HTML hierarchy of classes or Java



This page was generated with the help of DOC++.