The `follow:` keyword of ParserYAML does not work
There is this keyword for forwarding the parsing to a given file, e.g.
#File path1/sensor_follow.yaml
type: "CAMERA"
intrinsics:
distortion: [0, 0]
follow: "path1/filename.yaml"
#File path1/filename.yaml
pinhole_model: [320, 240, 320, 320]
which should end up being the same as
#File sensor_self_contained.yaml
type: "CAMERA"
intrinsics:
distortion: [0, 0]
pinhole_model: [320, 240, 320, 320]
However, this does not work.
The alternative, using "@path1/filename.yaml" does not seem to be adequate as it needs a root.