Skip to content

v0.4.0

Choose a tag to compare

@github-actions github-actions released this 11 Dec 22:20
· 12 commits to main since this release

v0.4.0 (2024-12-11)

Feature

  • feat(ClassificationAnnotations): stack multiple dots (4cabc19)

  • feat(ImageDetection): show score as percentage (ba2aad1)

  • feat(ImageDetection): red reserved for missing category annotations (23d812e)

  • feat(ImageDetection): add score threshold prop

Filters annotations. (e229398)

  • feat(ImageDetection): add 4 more category colors (e1465db)

  • feat(ImageDetection): show score for annotations (4eccedf)

  • feat(ImageDetection): hover over dot to see classes (867f415)

Fix

  • fix(ImageDetection): emit hover event in mouseleave function

There is an error in Javascript that borks client side trame code
when calling emit('hover') in a watchEffect. Steps

  1. In nrtk-explorer
  2. Turn on Model Inference
  3. Switch to Grid view for image list
  4. Error in JS console:
    NotReadableError: The requested file could not be read, typically due to permission problems that have occurred after a reference to a file was acquired.
    in
    t.onmessage = async u => {
    const p = await c.processChunk(u.data, h);
    p && l(p)
    } (d38cd84)

Refactor

  • refactor(ImageDetection): extract BoxAnnotations component (784aedb)

  • refactor(ImageDetection): extract ClassificationAnnotations component (f974fcf)

  • refactor(ImageDetection): extract AnnotationPopup component (49d6871)

  • refactor(ImageDetection): declarative style for mouse events (8faee9a)

Unknown

  • Merge pull request #7 from Kitware/hover-classes

Hover over dot to show image classifications (f18eb65)