`IMREAD_COLOR` vs `IMREAD_ANYCOLOR` ``` Mat imread( const String& filename, int flags = IMREAD_COLOR ); ``` vs ``` bool imreadmulti(const String& filename, std::vector<Mat>& mats, int flags = IMREAD_ANYCOLOR); ``` The last one was added here: #3575