with Gather and Plate Recognizer?
Triggers a recognition process using the Plate Recognizer SDK.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gather: {
type: "app",
app: "gather",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.gather.town/api/getEmailGuestlist`,
params: {
spaceId: `${this.gather.$auth.space_id}`,
apiKey: `${this.gather.$auth.api_key}`,
},
})
},
})
The Plate Recognizer API provides robust tools for converting images of vehicle license plates into text data. Using Pipedream, you can harness this capability to automate various tasks involving vehicle identification and monitoring. This integration is particularly useful in scenarios involving security, parking management, and logistics optimization, where automated plate recognition can streamline operations significantly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
platerecognizer: {
type: "app",
app: "platerecognizer",
}
},
async run({steps, $}) {
const data = {
"upload_url": `https://app.platerecognizer.com/static/demo.jpg`,
}
return await axios($, {
method: "post",
url: `https://api.platerecognizer.com/v1/plate-reader/`,
headers: {
"Authorization": `Token ${this.platerecognizer.$auth.api_token}`,
},
data,
})
},
})