In the camera calibration tutorial there is the line:
fs["Settings"] >> s;
which I don't understand. In the reference to the class FileStorage, of which fs is a member, [] is overloaded by:
FileNode operator[] (const String &nodename) const
which is described by
Returns the specified element of the top-level mapping.
What does this mean? and why in the definition of the overloading, there is a "const" after "...&nodename)" ?
And what is the operator >> doing? By default it's the bitwhise shifting, right? What would bitwise shifting do here?
Thank you in advance for your answers.