paint-brush
From Zero to AI Image Analyzer in 5 Minutes: A Beginner's Guideby@proflead
301 reads
301 reads

From Zero to AI Image Analyzer in 5 Minutes: A Beginner's Guide

by Vladislav GuzeyJuly 1st, 2024
Read on Terminal Reader
Read this story w/o Javascript

Too Long; Didn't Read

This article shows you how to build an AI image analyzer. We will use Project IDX and the Gemini API. Everything we will do is on the cloud, so you don't have to set up anything. The application doesn't work initially because we need to get an API key.
featured image - From Zero to AI Image Analyzer in 5 Minutes: A Beginner's Guide
Vladislav Guzey HackerNoon profile picture

Do you want to know how to build an AI image analyzer? Then read this article till the end! I'm going to show you how to build AI analyzer tools really simply, so you almost don't have to have any prior knowledge. I will take you step by step, and we will use Project IDX and the Gemini API. This means you don't have to set up anything; everything we will do is on the cloud. If you're ready, then let's get started!

Visit my YouTube Channel

Getting Started With Project IDX

The first step is pretty simple. We need to open the website idx.google.com. If you haven't registered yet, you have to register first, and then you can see the screen below.


Getting Started with Project IDX


  1. Choose a Template: I will choose the Gemini API template.


  2. Name Your Project: I will call it "test 2024."


  3. Select Environment: I will choose "Vite", which is a JavaScript web application environment.


  4. Create the Project: Press the Create button.


    Getting Started with Project IDX


After a few minutes, IDX will create everything for us, and we will see our template files, which we can modify as we like.

Modifying the Template

This is our index.html file. We can modify it the way we like, but let's first look at it. The initial template contains almost everything that we need. This template uses the Gemini 1.5-flash model, so it's more than enough for us.

Modifying the Template


Getting an API Key

As you can see, the application doesn't work initially because we need to get an API key first. Go to the website https://aistudio.google.com/app/apikey, and obtain your key there. If you want detailed instructions on how to get an API key, please watch another video about Project IDX.


Once you get your key, copy it, and then go to the main.js file. Replace the placeholder with your API key.

Getting an API Key


Testing the Application

Let's check if our application is working. Press "Go," and see what Gemini returns to us.

Testing the Application



As you can see, Gemini understands what's inside the picture and suggests some recipes to bake this kind of bakery. Since this application is already on the server, you will be able to share the link or open this application in your browser.

Testing the Application


The URL is not beautiful yet; however, you will be able to see that everything is working, and you can share this link with your partners or co-workers.

Adding Image Upload Functionality

To complete our AI image analyzer, we need to be able to add our own image. Let's make some adjustments to the template; first is the index.html file:


  1. Change the Application Name: I will call it "AI Image Analyzer."


  2. Delete the HTML: Delete the predefined images. Lines from 14 until 27.

<div class="image-picker">
 <label class="image-choice">
   <input type="radio" checked name="chosen-image" value="/baked_goods_1.jpg">
   <img src="/baked_goods_1.jpg">
 </label>
 <label class="image-choice">
   <input type="radio" name="chosen-image" value="/baked_goods_2.jpg">
   <img src="/baked_goods_2.jpg">
 </label>
 <label class="image-choice">
   <input type="radio" name="chosen-image" value="/baked_goods_3.jpg">
   <img src="/baked_goods_3.jpg">
 </label>
</div>


  1. Add an input field for uploading images. Line 15
<input type="file" id="fileInput" name="file">
  1. Change the input name prompt value to "Ask anything you want about this image."


The resulting HTML should look like the picture below.

The resulting HTML

Updating the JavaScript

We need to define JavaScript code to read our file. Open the main.js file, and make the following changes:


  1. Remove the code from line 22 until 26.
// Load the image as a base64 string
   let imageUrl = form.elements.namedItem('chosen-image').value;
   let imageBase64 = await fetch(imageUrl)
     .then(r => r.arrayBuffer())
     .then(a => Base64.fromByteArray(new Uint8Array(a)));


  1. Add a new code starting from line 22.
// Load the image as a base64 string
   const fileInput = document.getElementById('fileInput');
   const file = fileInput.files[0];


   const imageBase64 = await new Promise((resolve, reject) => {
     const reader = new FileReader();
     reader.readAsDataURL(file);
     reader.onload = () => {
       const base64String = reader.result.split(',')[1]; // Extract base64 part
       resolve(base64String);
     };
     reader.onerror = reject;
   });


Your application will look like this in the screenshot below.

AI Image Analyzer


Final Testing

Let's check the result. Upload an image, ask what is on the image, and press "Go".


My image example.


My image example


The result:

Final Testing


As you can see, the Gemini API explains everything about the image. Our AI image analyzer is working!

Conclusion

That's it! As you can see, it's really simple to build an AI image analyzer using Project IDX and the Gemini API. You can make a bunch of different apps. This is just one example. I hope you find this article helpful and informative. Please don’t forget to share your feedback in the comments below.


Thank you, and see you in my next articles! :)