Google Vision API

Hi Everyone,

I am making an app which detect object from the image using google vision.
but i am having problem at this point where Google vision post request only accept image in the form of BASE64

{
“requests”: [
{
“image”: {
“content”: “BASE64_URI”
},
“features”: [
{
“type”: “OBJECT_LOCALIZATION”,
“maxResults”: 10
}
]
}
]
}

There is a post here that could help with your problem. I would recommend giving this a quick read. The project provided by muneer in that post looks like what you need.