Skip to content

Releases: 12343954/VoTT

3.1.5

11 Feb 08:24
Compare
Choose a tag to compare

[p.s.]
Compilation failed on m2 mac 😣

v3.1.5

  1. fixed: ai detect result toast not close when page changed.
  2. fixed: ai auto-detect api url not change dynamically with the config.
  3. add mouse over effect to ai detect result table row

v3.1.4

  1. fixed not switch the language when app language changed.
    1. "schema-form"
    2. "toolbarItem"

v3.1.3

  1. switch and remember the languages.
  2. change input boxes background-color to dark color, protect the eyes.

v3.1.2

  1. change AI icon.
  2. record account in every asset json file.
  3. Yolov3Service(apiUrl) param associated with the project config.

v3.1.1

  1. add "creator" and "createdDate" to every "IRegion" and "IAssetMetadata" for user statistics.

v3.1.0

  1. add "autoDetectApi" field to IProject model.

v3.0.0

  1. add user login to vott.
  2. change AI button layout order.
  3. upgrade search bar function.

2.2.3

09 Apr 04:09
Compare
Choose a tag to compare
  • feat: Side bar
    • Add a search box
    • Add a button for untagged images
    • Add serial number to list

image

2.2.2

07 Apr 04:54
Compare
Choose a tag to compare
  • 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

image