@camera.ui/camera-ui-coreml 0.0.9 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@
6
6
  "description": "Model to use for object detection",
7
7
  "required": true,
8
8
  "store": true,
9
- "defaultValue": "yolov9m_320",
9
+ "defaultValue": "yolov10n_320",
10
10
  "enum": [
11
11
  "yolo3-tinyu",
12
12
  "yolo3-tinyu_320",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "CoreML",
3
3
  "name": "@camera.ui/camera-ui-coreml",
4
- "version": "0.0.9",
4
+ "version": "0.0.10",
5
5
  "description": "camera.ui coreml plugin",
6
6
  "author": "seydx (https://github.com/seydx/camera.ui)",
7
7
  "main": "./src/main.py",
@@ -19,12 +19,14 @@ available_models = [
19
19
  "yolov9m_320",
20
20
  "yolov9c",
21
21
  "yolov9c_320",
22
- # "yolov10n",
23
- # "yolov10n_320",
24
- # "yolov10s",
25
- # "yolov10s_320",
26
- # "yolov10m",
27
- # "yolov10m_320",
22
+ "yolov10n",
23
+ "yolov10n_320",
24
+ "yolov10s",
25
+ "yolov10s_320",
26
+ "yolov10m",
27
+ "yolov10m_320",
28
+ "yolov10l",
29
+ "yolov10l_320",
28
30
  ]
29
31
 
30
32
  available_precision = ["INT8", "FP16"]
package/src/main.py CHANGED
@@ -88,7 +88,7 @@ class CoreML(ObjectDetectionPlugin):
88
88
  "title": "Model",
89
89
  "description": "Model to use for object detection",
90
90
  "required": True,
91
- "defaultValue": "yolov9m_320",
91
+ "defaultValue": "yolov10n_320",
92
92
  "enum": available_models,
93
93
  },
94
94
  "precision": {