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
}
]
}
]
}