开发者

OpenCV: reading image from std::in?

Is there some way of using OpenCV's imread function to read from std::in?

Mat imread( const string& filename, int flags=1 );

Function accepts only filename, but is there some "magic" value for stdin?开发者_运维技巧


OpenCV provides imdecode functions that work on buffers instead of filename. You would need to read stdin into a buffer first.

http://opencv.willowgarage.com/documentation/cpp/reading_and_writing_images_and_video.html


If you want a very quick hack, here's something that seems to work on Linux:

#include <unistd.h>

/* snip */ 

std::stringstream ss;
ss << "/proc/" << getpid() << "/fd/0";

cv::Mat m = cv::imread(ss.str());


No,

But if really you want to, you can stream stdin into a named pipe (mkfifo) and read from it.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜