ai.natml.vision.nanodet
v1.0.2
Published
Anchor-free ultra-fast object detection.
Downloads
873
Maintainers
Readme
NanoDet
NanoDet high performance general object detection.
Installing NanoDet
Add the following items to your Unity project's Packages/manifest.json
:
{
"scopedRegistries": [
{
"name": "NatML",
"url": "https://registry.npmjs.com",
"scopes": ["ai.natml"]
}
],
"dependencies": {
"ai.natml.vision.nanodet": "1.0.2"
}
}
Detecting Objects in an Image
First, create the NanoDet predictor:
// Create the NanoDet predictor
var predictor = await NanoDetPredictor.Create();
Then detect objects in the image:
// Create image feature
Texture2D image = ...;
// Detect objects
NanoDetPredictor.Detection[] detections = predictor.Predict(image);
Requirements
- Unity 2022.3+
Quick Tips
- Join the NatML community on Discord.
- Discover more ML models on NatML Hub.
- See the NatML documentation.
- Contact us at [email protected].
Thank you very much!