标签:
Loads an image from a file. 从文件中读取图像。
C++: Mat imread(const string& filename, int flags=1 )
Parameters: 参数:
Flags specifying the color type of a loaded image:
Saves an image to a specified file. 把图像保存到特定路径下。
Format-specific save parameters encoded as pairs paramId_1, paramValue_1, paramId_2, paramValue_2, ... . The following parameters are currently supported:
Displays an image in the specified window. 在特定的窗口上显示图像。
C++: void imshow(const string& winname, InputArray image)
Parameters:
OpenCV学习笔记——imread、imwrite以及imshow
标签:
原文地址:http://www.cnblogs.com/JJJanepp/p/5643790.html