Public
Edited
Nov 8, 2022
1 fork
9 stars
Also listed in…
TensorFlow.js
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
ssdMobileNetPath = "https://tfhub.dev/tensorflow/tfjs-model/ssd_mobilenet_v2/1/default/1"
Insert cell
Insert cell
ssdMobileNet = tf.loadGraphModel(ssdMobileNetPath, {fromTFHub: true})
Insert cell
Insert cell
ssdMobileNet.inputs[0].shape
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
{
let count = 0;
cocoClasses.forEach(element => {
if (element === "-") {
count++;
}
});
return count;
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
img = new Promise((resolve, reject) => {
const img = htl.html`<img/>`;
img.src = imgUrl;
img.crossOrigin = 'anonymous';
img.onload = () => resolve(img);
img.onerror = reject;
})
Insert cell
Insert cell
imageTensor = tf.browser.fromPixels(img)
Insert cell
imageTensor.shape
Insert cell
Insert cell
ssdMobileNet.predict(imageTensor.expandDims()) // Oops!
Insert cell
Insert cell
detections = ssdMobileNet.executeAsync(imageTensor.expandDims())
Insert cell
Insert cell
Insert cell
detections[0].shape
Insert cell
Insert cell
detections[1].shape
Insert cell
Insert cell
boxes = detections[1].squeeze().array()
Insert cell
Insert cell
Insert cell
Insert cell
detectionsTopClass = detections[0].topk()
Insert cell
Insert cell
topIndices = detectionsTopClass.indices.data()
Insert cell
Insert cell
topValues = detectionsTopClass.values.data()
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
nmsSelections = tf.image.nonMaxSuppressionWithScoreAsync(
detections[1].squeeze(), // box coordinates
detectionsTopClass.values.squeeze(), // box object probabilities
detectionConstraintsNms.maxBoxes,
detectionConstraintsNms.iouThreshold,
detectionConstraintsNms.confidenceThreshold,
detectionConstraintsNms.softNMS
)
Insert cell
selections = nmsSelections.selectedIndices.data()
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
webcamContainer = createWebcamContainer()
Insert cell
detectObjectsInWebcam(activateWebcam, webcamContainer, ssdMobileNet, cocoClasses, detectionConstraintsVideo)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
tf = require('@tensorflow/tfjs@4.0.0/dist/tf.min.js')
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more