Back to Top

How To Create Own Image Classifier With Angular And Tensorflow.Js?

Angular Tensorflow

Have you come across deep learning library in the world is Google’s TensorFlow? If not it’s an ideal opportunity to think about existing models for object detection, face detection, face recognition. In any case, I discovered a portion of these models not to shine with optimal performance, while other models would perform entirely well in the browser. Moreover, you may find this pretty astonishing if you think about the potential of in-browser machine learning and all the possibilities libraries such as tensorflow.js.

For the time being, how about we get to know TensorFlow.js

TensorFlow.js, an open-source library you can use to define, train, and run machine learning models entirely in the browser, using JavaScript and a high-level layers API. In case you are the developer of JavaScript who’s new to ML, TensorFlow.js is a great way to start learning.

Aside from this, everybody is by all accounts discussing AI and ML around. Also, I should state, I generally was flabbergasted by things individuals are doing with and as a front-end developer. I’m talking about Siri, Alexa, Tesla, and even Netflix to recommend your next TV show using AI-based concepts. So if they can why can’t you?

Prior to Further ado, we should dig into how can it work? This is about science! Our psyche is loaded with Neurons, we get contributions from our different faculties and producing the yield through the axon. Attempt to thoroughly consider this thing and convert it into a scientific model. Furthermore, an invention called TensorFlow is one of the most successful approaches to creating such neuron networks.

With WebGL, we can run our JS code using our graphics card memory, Which is much more powerful and quicker than our RAM memory.

Image classifiers

Image classifiers are able to understand a computer system and group pictures as people do. For instance Facebook-have, you considered how the stage consequently labels your photograph? How the hell they know? We will be creating 2 examples here:

  • Upload an image, and let the browser classify wheat’s in it.
  • Wire up our webcam, and let the browser classify what’s we see in the webcam.

Image upload classifier

Step 1- Install TensorFlow & Mobilenet

Step 2- Import mobile net in your component

Step 3- Load the mobile net model

Let’s load the model OnInit and also add loading indication:

Step 4- Prepare the HTML

Time to add our input file section, along with the loading indication to the template:

Step 5- Implement the filechange() function

Add the imgSrc class property; which I get from the FileReader, to show the image uploaded preview.

Step 6- Classify the uploaded image

I’ve got the imgSrc, now I can run the model.classify() method and get the model predictions:

Time to update the template this will show the predications:

As a result,

Tensorflow

Webcam Classifier

Mobilenet classification can perform not only on static images, we actually can classify and predict live video stream!

Don’t forget to tag HTML5 video tag to our template:

Let’s get a hold of the video element with @ViewChild:

Few things to notice includes:

  1. Since we are changing DOM elements; it’s time we better use the AfterViewInit life cycle.
  2. Use navigator.mediaDevices.getUserMedia to make sure we support all browsers.
  3. We got a promise out of the getUserMedia function which contains the stream, and we set the video native element.srcObject to this stream, and with that, we can see ourselves:
  4. Let’s run the classify() method every 3 seconds on the webcam stream:

    Things to remember:

    You don’t have to be a data scientist to do AI anymore.TensorFlow.js is an independent package, you can run it in the browser with a matter of a 1 simple import. Is the future of FE developers is taking part in building AI-based prediction models? I’ll definitely put my money on that.

Leave a Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Most Popular Posts

Objects and Classes in PHP

Posted on 7 years ago

Bhumi

How to manage Session in WordPress

Posted on 11 years ago

Bhumi

How to get Current URL in WordPress?

Posted on 10 years ago

Bhumi