-
Notifications
You must be signed in to change notification settings - Fork 1
quantstmt
hubendubler edited this page Sep 24, 2018
·
1 revision
The quantstmt
(Quantitative statement) is the most flexible of data containers in FEI. It contains one or more quantitem
elements that represent the single elements of the dataset. The type of data is not specified and can be included in the form of attributes. A description of the dataset via a quantdesc
element is also possible.
The quantitem
element can also include a motion
element to describe motion in a frame.
element quantstmt {
attribute type { text }?,
attribute id { text }?,
element quantdesc { text }?,
element quantitem {
attribute type { text }?,
text | (
element timecode { timecode }?,
element source { filepath }?,
element value { text }?,
element motion { motion }?
)
}+
}
<quantstmt type="measure" id="measure_up">
<quantdesc>heartrate significant rise</quantdesc>
<quantitem>
<timecode>00:00:00</timecode>
<value>12</value>
</quantitem>
<quantitem>
<timecode>00:00:01</timecode>
<value>9</value>
</quantitem>
...
<quantitem>
<timecode>00:07:55</timecode>
<value>25</value>
</quantitem>
</quantstmt>
FEI documentation - First draft 09/2018