Returns the definition of a virtual track.

emr_vtrack.info(vtrack)

Arguments

vtrack

virtual track name

Value

Internal representation of a virtual track.

Details

This function returns the internal representation of a virtual track.

Examples


emr_db.init_examples()
#> NULL
emr_vtrack.create("vtrack1", "dense_track", "max", time.shift = c(5, 10))
emr_vtrack.info("vtrack1")
#> $src
#> [1] "dense_track"
#> 
#> $time_shift
#> [1]  5 10
#> 
#> $func
#> [1] "max"
#> 
#> $params
#> NULL
#> 
#> $keepref
#> [1] FALSE
#> 
#> $id_map
#> NULL
#> 
#> $filter
#> NULL
#>