Skip to content

Latest commit

 

History

History

image_classification

WebNN Image Classfication Example

Image classfication is the process of taking images as input and classifying the major object in the image into a set of pre-defined classes.

This example shows how the MobileNet V2 ONNX, SqueezeNet 1.1 ONNX, ResNet50 V2 ONNX from ONNX models and MobileNet V2 TFLite SqueezeNet 1.0 TFLite, ResNet50 V2 TFLite from TFLite models may be implemented by using the WebNN API.

Usage

Classify images

Choose device, model and layout, in a very few second you will see the predict result for the test image be presented on the page.

You could also click 'Pick Image' button to choose your local image to classfy it.

Classify video stream

Here we classfy every frame in a live camera, then combined the results. Click 'LIVE CAMERA' tab, allow the browser to use your local camera if there's a prompt, then you will see real-time classfication results on the page.

Switch model or layout to check variance predict result.