Releases: 12343954/VoTT
Releases · 12343954/VoTT
3.1.5
[p.s.]
Compilation failed on m2 mac 😣
v3.1.5
- fixed: ai detect result toast not close when page changed.
- fixed: ai auto-detect api url not change dynamically with the config.
- add mouse over effect to ai detect result table row
v3.1.4
- fixed not switch the language when app language changed.
- "schema-form"
- "toolbarItem"
v3.1.3
- switch and remember the languages.
- change input boxes background-color to dark color, protect the eyes.
v3.1.2
- change AI icon.
- record account in every asset json file.
- Yolov3Service(apiUrl) param associated with the project config.
v3.1.1
- add "creator" and "createdDate" to every "IRegion" and "IAssetMetadata" for user statistics.
v3.1.0
- add "autoDetectApi" field to IProject model.
v3.0.0
- add user login to vott.
- change AI button layout order.
- upgrade search bar function.
2.2.3
2.2.2
-
feat: Automatically annotate images via YOLOv3 auto-detect webapi (with AlexeyAB's YOLOv3
yolo_cpp_dll.dll
which written in 2019, the fastest YOLO on RTX20 series graphics cards, 30+ fps)shortcut key⌨: Q
-
webapi : http://localhost:50505/api/YOLOv3/detect/${image_path} , only accept local image path
nvidia-smi Driver Version: 456.71 CUDA Version: 11.1 nvcc -V nvcc: NVIDIA (R) Cuda compiler driver Copyright (c) 2005-2019 NVIDIA Corporation Built on Wed_Oct_23_19:32:27_Pacific_Daylight_Time_2019 Cuda compilation tools, release 10.2, V10.2.89 cuDnn 10.2
-
json result:
{ eta: 28, // ms diff: 0, // means no coincident recognition(green toast) n, // means duplicate detection (yellow toast), detect: [{ id, // detection index x,y,w,h, center: "100, 100", obj_id, obj_name, prob, // max prob obj_IDs: [ // the same region, order by prob desc {obj_id, obj_name, prob}, ... ] }, ... ] }
-
-
feat: Highlight the region on mouse enter each row in yolo detection dialog
-
fix: Remove the last toast immediately, and show the next toast with result smoothly, avoid occluding the main UI