use-tensorflow
A React hook for tensorflow.js to detect objects and poses easily:
API
Import one of the models:
All the named imported models follow the same structure:
ref
: the reference for the image or video.config
: the configuration for the specific model in Tensorflow. See Coco SSD example.modelUrl
: where to load the model from. You can load them locally for better performance in dev.
There's also a default export useTensorflow
, but it's experimental by now.
useObjects
Detect objects in the image, including the label, position and score:
Output:
usePoses
Using poses as well:
All the keys are:
nose
leftEye
rightEye
leftEar
rightEar
leftShoulder
rightShoulder
leftElbow
rightElbow
leftWrist
rightWrist
leftHip
rightHip
leftKnee
rightKnee
leftAnkle
rightAnkle
useTensorflow
This is too experimental right now, please read the code to see how it works for now under src/useModel.js
.
Examples
Some more examples. These examples unfortunately don't load on Codesandbox, so you'll have to install and load them locally for them to work (including loading the images locally to avoid CORS issues).
Loading local models
For local development you very likely want to download and load the model locally for speed. I haven't found an easy way of doing this, so let's get scrappy:
1.
Open the network requests in the browser and load the library without the modelUrl
:
2.
Copy the .json
file and all the related files into your public
folder. Create a folder called public/objects
and put it all there:
3.
Point the use{Name}
to these files from the public location:
Realtime camera recognition
To load a realtime video you can install my library use-camera
and do:
Adding bounding boxes
An example with all the bounding boxes and the border color depending on the accuracy. We're using Styled Components here, but use any styling library you prefer: