with EasyFill.ai and Google Cloud Vision?
Performs feature detection on a local or remote image file. See the documentation
Detects logos within a local or remote image file. See the documentation
Detects text in a local image or remote image. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
easyfill_ai: {
type: "app",
app: "easyfill_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://admin.easyfill.ai/api/child_care_centers/active`,
headers: {
"api-key": `${this.easyfill_ai.$auth.api_key}`,
},
})
},
})
The Google Cloud Vision API allows you to analyze images in the cloud, harnessing Google's machine learning technology. You can detect and classify multiple objects, face and landmark detection, handwriting recognition, and image attributes. Combining this with Pipedream's serverless platform catalyzes the creation of automated workflows to process images, trigger actions, and integrate with other services seamlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_cloud_vision_api: {
type: "app",
app: "google_cloud_vision_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.google_cloud_vision_api.$auth.oauth_access_token}`,
},
})
},
})