Propagate angle when use 'propagate' feature (#5139)

* Propagate angle when use 'propagate' feature

* Updated version && changelog
main
Boris Sekachev 3 years ago committed by GitHub
parent 37ef30b963
commit 78160ce753
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -48,6 +48,7 @@ non-ascii paths while adding files from "Connected file share" (issue #4428)
- Double modal export/backup a task/project (<https://github.com/opencv/cvat/pull/5075>)
- Fixed bug of computing Job's unsolved/resolved issues numbers (<https://github.com/opencv/cvat/pull/5101>)
- Dataset export for job (<https://github.com/opencv/cvat/pull/5052>)
- Angle is not propagated when use ``propagate`` feature (<https://github.com/opencv/cvat/pull/5139>)
- Restoring CVAT in case of React-renderning fail (<https://github.com/opencv/cvat/pull/5134>)
- Deleted frames become restored if a user deletes frames from another job of the same task
(<https://github.com/opencv/cvat/pull/5138>)

@ -1,6 +1,6 @@
{
"name": "cvat-ui",
"version": "1.42.3",
"version": "1.42.4",
"description": "CVAT single-page application",
"main": "src/index.tsx",
"scripts": {

@ -405,6 +405,7 @@ export function propagateObjectAsync(sessionInstance: any, objectState: any, fro
shapeType: _objectState.shapeType,
label: _objectState.label,
zOrder: _objectState.zOrder,
rotation: _objectState.rotation,
frame: from,
elements: _objectState.shapeType === 'skeleton' ? _objectState.elements
.map((element: any): any => getCopyFromState(element)) : [],

Loading…
Cancel
Save