Read image from Amazon S3 directly to MAT with AWS SDK for C++? [closed]
Does anyone have experience with this AWS SDK for C++?
So for example, I have this image: https://s3-us-west-2.amazonaws.com/vs...
How can I read this image directly to MAT without saving it to disk using AWS SDK for C++?
Any help would be greatly appreciated!
if there's an aws sdk, why not use it ?
if not, you want one of those
Hi Berak, I am trying to use aws sdk actually. My question is how? Thanks
sorry, can't help with that ;(
but once you have the bytes in memory, you can construct a cv::Mat easily like
Thanks Berak anyway. I'm reading the documentation of AWS SDK to read to buffer but has now luck so far.
Hi, Cuongvt101. I wrote an article for using OpenCV and AWS SDK for C++. http://qiita.com/d9magai@github/items...
This is the snippet.
Didn't check back this question for a while. Thanks a lot d9magai for your help