Call format:

Plugins Create signals by detections

Configuration

Configuration file:

SelectByDetection.xml

Example of the confihuration file:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="12">
    <Parameters class_id="0" tracking_level="0" version="0">
        <before> 10000000 </before>
        <after> 120000000 </after>
        <bufPath> ./Cache/ </bufPath>
       <fileName></fileName> 
       <format> ON/OFF </fprmat>
    </Parameters>
</boost_serialization>

where

<before>

<after>

<bufPath>

<fileName>

Format of file with detections


on/off - The beginning and the end of detection are in separate lines. The beginning line starts with the word ON followed by the time, whereas the end line starts with the word OFF followed by the time. Lines that don't begin with ON or OFF are ignored. E.q.

# Example of on/off format
ON 2017-02-22:14:44:37.275Z
OFF 2017-02-22:14:46:47.936Z
ON 2017-02-23:03:59:41.2123Z
OFF 2017-02-23:04:01:11.852Z

single time - the detection is described by a single-time. Each detection is in a separate line. e.g

# Example of single-time format
2017-02-22:14:44:37.275Z
2017-02-23:03:59:41.2123Z

double-time -

# Example of double-time format
2017-02-22:14:44:37.275Z - 2017-02-22:14:46:47.936Z
2017-02-23:03:59:41.2123Z - 2017-02-23:04:01:11.852Z

In all formats lines beginning with # are treated as comments and are ignored

  • No labels