Objects Detection

Ready-to-go solution for multiple object detection and classification

by api4ai

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Objects Detection API sample</title>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css">
</head>
<body>
  <main class="container">
    <article style="margin-top: 0px; text-align: center;">
      <h3>Objects Detection API sample</h3>
      <p>This ready-to-use API offers high-accuracy detection of different types of objects framing them with bounding boxes and predicting their class.</p>
    </article>
    <label for="file">Select image to upload
      <input type="file" id="file" name="file">
    </label>
    <h4 id="spinner" style="text-align: center;" aria-busy="true" hidden>Processing</h4>
    <section id="sectionParsed" hidden>
      <label for="parsed">đź’¬ Objects with confidence above 0.5:
        <pre id="parsed" style="padding: 10px;"></pre>
      </label>
    </section>
    <section id="sectionRaw" hidden>
      <label for="raw">đź’¬ Raw response:
        <pre id="raw" style="padding: 10px;"></pre>
      </label>
    </section>
  </main>
</body>
</html>

JavaScript

// Example of using API4AI general objects detection.

// Use 'normal' mode if you have an API Key from the API4AI Developer Portal. This is the method that users should normally prefer.
// Use 'rapidapi' if you want to try api4ai via RapidAPI marketplace.
// For more details visit:
//   https://rapidapi.com/api4ai-api4ai-default/api/general-detection/details
const MODE = 'normal'

// Your API4AI key. Fill this variable with the proper value if you have one.
const API4AI_KEY = ''

// Your RapidAPI key. Fill this variable with the proper value if you want
// to try api4ai via RapidAPI marketplace.
const RAPIDAPI_KEY = ''

const OPTIONS = {
  normal: {
    url: 'https://demo.api4ai.cloud/general-det/v1/results',
    headers: { 'X-API-KEY': API4AI_KEY }
  },
  rapidapi: {
    url: 'https://general-detection.p.rapidapi.com/v1/results',
    headers: { 'X-RapidAPI-Key': RAPIDAPI_KEY }
  }
}

document.addEventListener('DOMContentLoaded', function (event) {
  const input = document.getElementById('file')
  const raw = document.getElementById('raw')
  const sectionRaw = document.getElementById('sectionRaw')
  const parsed = document.getElementById('parsed')
  const sectionParsed = document.getElementById('sectionParsed')
  const spinner = document.getElementById('spinner')

  input.addEventListener('change', (event) => {
    const file = event.target.files[0]
    if (!file) {
      return false
    }

    sectionRaw.hidden = true
    sectionParsed.hidden = true
    spinner.hidden = false

    // Preapare request.
    const form = new FormData()
    form.append('image', file)
    const requestOptions = {
      method: 'POST',
      body: form,
      headers: OPTIONS[MODE].headers
    }

    // Make request.
    fetch(OPTIONS[MODE].url, requestOptions)
      .then(response => response.json())
      .then(function (response) {
        // Print raw response.
        raw.textContent = JSON.stringify(response, undefined,...