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.
精彩评论