XMM - Probabilistic Models for Motion Recognition and Mapping

Classes | Enumerations
[Core] Training Sets

Classes

class  xmm::PhraseEvent
 Event that can be thrown by a phrase to a training set. More...
 
class  xmm::Phrase
 Data phrase. More...
 
class  xmm::TrainingSet
 Base class for the definition of training sets. More...
 

Enumerations

enum  xmm::MemoryMode { xmm::MemoryMode::OwnMemory, xmm::MemoryMode::SharedMemory }
 Type of memory management for training sets and phrases. More...
 
enum  xmm::Multimodality { xmm::Multimodality::Unimodal, xmm::Multimodality::Bimodal }
 Number of modalities in the data phrase. More...
 

Detailed Description

Enumeration Type Documentation

enum xmm::MemoryMode
strong

Type of memory management for training sets and phrases.

Enumerator
OwnMemory 

memory is owned by the Phrase container.

Phrases can be recorded directly

SharedMemory 

memory is shared with other data structures

Phrases can be 'connected' to external data arrays

enum xmm::Multimodality
strong

Number of modalities in the data phrase.

Enumerator
Unimodal 

single modality (i.e. 1 data array)

can be used for recognition

Bimodal 

two modalities (i.e. 2 data arrays)

can be used for regression (input/output)