Imagga Image Recognition API provides solutions for image tagging & categorization, visual search, content moderation.
Emit new event when a batch of images has been processed for categorization, tagging, or color extraction.
Assign a category to a single image based on its visual content. See the documentation
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
Analyzes a batch of images for categorization, tagging, or color extraction. See the documentation
The Imagga API is a powerful image recognition tool that enables you to automate the process of analyzing and tagging images. With its AI-driven capabilities, you can extract a wealth of information from visual content. It offers features such as categorization, color extraction, and auto-tagging, making it incredibly useful for building workflows that require image analysis.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
imagga: {
type: "app",
app: "imagga",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.imagga.com/v2/usage`,
auth: {
username: `${this.imagga.$auth.api_key}`,
password: `${this.imagga.$auth.api_secret}`,
},
})
},
})
# $PIPEDREAM_STEPS file contains data from previous steps
cat $PIPEDREAM_STEPS | jq .trigger.context.id
# Write data to $PIPEDREAM_EXPORTS to return it from the step
# Exports must be written as key=value
echo foo=bar >> $PIPEDREAM_EXPORTS