CHANGELOG.md 74.9 KB
Newer Older
1
# Changelog
2

3 4 5 6
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7

N
Nikita Manovich 已提交
8 9
## \[2.3.0] - Unreleased
### Added
M
Maxim Zhiltsov 已提交
10
- SDK section in docs (<https://github.com/opencv/cvat/pull/4928>)
11
- An option to enable or disable host certificate checking in CLI (<https://github.com/opencv/cvat/pull/4928>)
12
- REST API tests with skeletons (<https://github.com/opencv/cvat/pull/4987>)
13 14
- Host schema auto-detection in SDK (<https://github.com/opencv/cvat/pull/4910>)
- Server compatibility checks in SDK (<https://github.com/opencv/cvat/pull/4935>)
15 16
- Objects sorting option in the sidebar, by z order. Additional visualization when the sorting is applied
(<https://github.com/opencv/cvat/pull/5145>)
T
T 已提交
17
- Added YOLOv5 serverless function NVIDIA GPU support (<https://github.com/opencv/cvat/pull/4960>)
B
Boris Sekachev 已提交
18 19
- Mask tools are supported now (brush, eraser, polygon-plus, polygon-minus, returning masks
from online detectors & interactors) (<https://github.com/opencv/cvat/pull/4543>)
K
Kirill Sizov 已提交
20
- Added Webhooks (<https://github.com/opencv/cvat/pull/4863>)
K
Kirill Lakhov 已提交
21
- Authentication with social accounts google & github (<https://github.com/opencv/cvat/pull/5147>, <https://github.com/opencv/cvat/pull/5181>)
22
- REST API tests to export job datasets & annotations and validate their structure  (<https://github.com/opencv/cvat/pull/5160>)
N
Nikita Manovich 已提交
23 24

### Changed
25 26 27
- `api/docs`, `api/swagger`, `api/schema`, `server/about` endpoints now allow unauthorized access (<https://github.com/opencv/cvat/pull/4928>, <https://github.com/opencv/cvat/pull/4935>)
- Datumaro version is upgraded to 0.3 (dev) (<https://github.com/opencv/cvat/pull/4984>)
- Allowed trailing slashes in the SDK host address (<https://github.com/opencv/cvat/pull/5057>)
28
- Enabled authentication via email (<https://github.com/opencv/cvat/pull/5037>)
N
Nikita Manovich 已提交
29 30 31 32 33

### Deprecated
- TDB

### Removed
34
- The `--https` option of CLI (<https://github.com/opencv/cvat/pull/4910>)
N
Nikita Manovich 已提交
35 36

### Fixed
37
- Removed a possibly duplicated encodeURI() calls in `server-proxy.ts` to prevent doubly encoding
38
non-ascii paths while adding files from "Connected file share" (issue #4428)
39
- Removed unnecessary volumes defined in docker-compose.serverless.yml
40
(<https://github.com/openvinotoolkit/cvat/pull/4659>)
41
- Project import/export with skeletons (<https://github.com/opencv/cvat/pull/4867>,
42
  <https://github.com/opencv/cvat/pull/5004>)
43
- Shape color is not changed on canvas after changing a label (<https://github.com/opencv/cvat/pull/5045>)
44
- Unstable e2e restore tests (<https://github.com/opencv/cvat/pull/5010>)
45
- IOG and f-BRS serverless function (<https://github.com/opencv/cvat/pull/5039>)
46 47
- Invisible label item in label constructor when label color background is white,
 or close to it (<https://github.com/opencv/cvat/pull/5041>)
48
- Fixed cvat-core ESlint problems (<https://github.com/opencv/cvat/pull/5027>)
49 50
- Fixed task creation with non-local files via the SDK/CLI
  (<https://github.com/opencv/cvat/issues/4962>)
51
- HRNET serverless function (<https://github.com/opencv/cvat/pull/4944>)
52
- Invalid export of segmentation masks when the `background` label gets nonzero id (<https://github.com/opencv/cvat/pull/5056>)
53 54
- A trailing slash in hostname does't allow SDK to send some requests
  (<https://github.com/opencv/cvat/pull/5057>)
55
- Double modal export/backup a task/project (<https://github.com/opencv/cvat/pull/5075>)
56
- Fixed bug of computing Job's unsolved/resolved issues numbers (<https://github.com/opencv/cvat/pull/5101>)
M
Maria Khrustaleva 已提交
57
- Dataset export for job (<https://github.com/opencv/cvat/pull/5052>)
58
- Angle is not propagated when use ``propagate`` feature (<https://github.com/opencv/cvat/pull/5139>)
59
- Could not fetch task in a corner case (<https://github.com/opencv/cvat/pull/5163>)
60
- Restoring CVAT in case of React-renderning fail (<https://github.com/opencv/cvat/pull/5134>)
61 62
- Deleted frames become restored if a user deletes frames from another job of the same task
(<https://github.com/opencv/cvat/pull/5138>)
63
- Wrong issue position when create a quick issue on a rotated shape (<https://github.com/opencv/cvat/pull/5162>)
64
- Extra rerenders of different pages with each click (<https://github.com/opencv/cvat/pull/5178>)
R
Roman Donchenko 已提交
65 66
- Skeleton points exported out of order in the COCO Keypoints format
  (<https://github.com/opencv/cvat/issues/5048>)
ftmagician's avatar
ftmagician 已提交
67
- PASCAL VOC 1.1 can't import dataset (<https://github.com/opencv/cvat/pull/4647>)
68
- Changing an object causes current z layer to be set to the maximum (<https://github.com/opencv/cvat/pull/5145>)
69
- Job assignee can not resolve an issue (<https://github.com/opencv/cvat/pull/5167>)
70
- Create manifest with cvat/server docker container command (<https://github.com/opencv/cvat/pull/5172>)
71
- Cannot assign a resource to a user who has an organization (<https://github.com/opencv/cvat/pull/5218>)
72
- Occluded not applied on canvas instantly for a skeleton elements (<https://github.com/opencv/cvat/pull/5259>)
73
- Oriented bounding boxes broken with COCO format ss(<https://github.com/opencv/cvat/pull/5219>)
74 75
- Fixed upload resumption in production environments
  (<https://github.com/opencv/cvat/issues/4839>)
N
Nikita Manovich 已提交
76 77 78 79

### Security
- TDB

80
## \[2.2.0] - 2022-09-12
81
### Added
B
Boris Sekachev 已提交
82
- Added ability to delete frames from a job based on (<https://github.com/openvinotoolkit/cvat/pull/4194>)
B
Boris Sekachev 已提交
83 84 85 86 87 88 89 90 91
- Support of attributes returned by serverless functions based on (<https://github.com/openvinotoolkit/cvat/pull/4506>)
- Project/task backups uploading via chunk uploads
- Fixed UX bug when jobs pagination is reset after changing a job
- Progressbars in CLI for file uploading and downloading
- `utils/cli` changed to `cvat-cli` package
- Support custom file name for backup
- Possibility to display tags on frame
- Support source and target storages (server part)
- Tests for import/export annotation, dataset, backup from/to cloud storage
92
- Added Python SDK package (`cvat-sdk`) (<https://github.com/opencv/cvat/pull/4813>)
B
Boris Sekachev 已提交
93
- Previews for jobs
94
- Documentation for LDAP authentication (<https://github.com/cvat-ai/cvat/pull/39>)
95
- OpenCV.js caching and autoload (<https://github.com/cvat-ai/cvat/pull/30>)
96
- Publishing dev version of CVAT docker images (<https://github.com/cvat-ai/cvat/pull/53>)
97 98
- Support of Human Pose Estimation, Facial Landmarks (and similar) use-cases, new shape type:
Skeleton (<https://github.com/cvat-ai/cvat/pull/1>), (<https://github.com/opencv/cvat/pull/4829>)
99
- Added helm chart support for serverless functions and analytics (<https://github.com/cvat-ai/cvat/pull/110>)
100
- Added confirmation when remove a track (<https://github.com/opencv/cvat/pull/4846>)
101 102
- [COCO Keypoints](https://cocodataset.org/#keypoints-2020) format support (<https://github.com/opencv/cvat/pull/4821>,
  <https://github.com/opencv/cvat/pull/4908>)
103
- Support for Oracle OCI Buckets (<https://github.com/opencv/cvat/pull/4876>)
104
- `cvat-sdk` and `cvat-cli` packages on PyPI (<https://github.com/opencv/cvat/pull/4903>)
105 106 107
- UI part for source and target storages (<https://github.com/opencv/cvat/pull/4842>)
- Backup import/export modals (<https://github.com/opencv/cvat/pull/4842>)
- Annotations import modal (<https://github.com/opencv/cvat/pull/4842>)
108

109
### Changed
B
Boris Sekachev 已提交
110 111
- Bumped nuclio version to 1.8.14
- Simplified running REST API tests. Extended CI-nightly workflow
112
- REST API tests are partially moved to Python SDK (`users`, `projects`, `tasks`, `issues`)
113
- cvat-ui: Improve UI/UX on label, create task and create project forms (<https://github.com/cvat-ai/cvat/pull/7>)
114
- Removed link to OpenVINO documentation (<https://github.com/cvat-ai/cvat/pull/35>)
115
- Clarified meaning of chunking for videos
116 117

### Fixed
B
Boris Sekachev 已提交
118
- Task creation progressbar bug
B
Boris Sekachev 已提交
119
- Removed Python dependency ``open3d`` which brought different issues to the building process
B
Boris Sekachev 已提交
120 121 122 123 124 125
- Analytics not accessible when https is enabled
- Dataset import in an organization
- Updated minimist npm package to v1.2.6
- Request Status Code 500 "StopIteration" when exporting dataset
- Generated OpenAPI schema for several endpoints
- Annotation window might have top offset if try to move a locked object
126
- Image search in cloud storage (<https://github.com/cvat-ai/cvat/pull/8>)
127
- Reset password functionality (<https://github.com/cvat-ai/cvat/pull/52>)
128
- Creating task with cloud storage data (<https://github.com/cvat-ai/cvat/pull/116>)
129
- Show empty tasks (<https://github.com/cvat-ai/cvat/pull/100>)
130
- Fixed project filtration (<https://github.com/opencv/cvat/pull/4878>)
131
- Maximum callstack exceed when create task with 100000+ files from cloud storage (<https://github.com/opencv/cvat/pull/4836>)
132
- Fixed invocation of serverless functions (<https://github.com/opencv/cvat/pull/4907>)
133
- Removing label attributes (<https://github.com/opencv/cvat/pull/4927>)
134
- Notification with a required manifest file (<https://github.com/opencv/cvat/pull/4921>)
135

N
Nikita Manovich 已提交
136
## \[2.1.0] - 2022-04-08
137
### Added
138
- Task annotations importing via chunk uploads (<https://github.com/openvinotoolkit/cvat/pull/4327>)
139
- Advanced filtration and sorting for a list of tasks/projects/cloudstorages (<https://github.com/openvinotoolkit/cvat/pull/4403>)
K
Kirill Lakhov 已提交
140
- Project dataset importing via chunk uploads (<https://github.com/openvinotoolkit/cvat/pull/4485>)
141
- Support paginated list for job commits (<https://github.com/openvinotoolkit/cvat/pull/4482>)
142 143

### Changed
144
- Added missing geos dependency into Dockerfile (<https://github.com/openvinotoolkit/cvat/pull/4451>)
145
- Improved helm chart readme (<https://github.com/openvinotoolkit/cvat/pull/4366>)
146
- Added helm chart support for CVAT 2.X and made ingress compatible with Kubernetes >=1.22 (<https://github.com/openvinotoolkit/cvat/pull/4448>)
147 148

### Fixed
149 150
- Permission error occured when accessing the JobCommits (<https://github.com/openvinotoolkit/cvat/pull/4435>)
- job assignee can remove or update any issue created by the task owner (<https://github.com/openvinotoolkit/cvat/pull/4436>)
151
- Bug: Incorrect point deletion with keyboard shortcut (<https://github.com/openvinotoolkit/cvat/pull/4420>)
152
- some AI Tools were not sending responses properly (<https://github.com/openvinotoolkit/cvat/issues/4432>)
153
- Unable to upload annotations (<https://github.com/openvinotoolkit/cvat/pull/4513>)
154
- Fix build dependencies for Siammask (<https://github.com/openvinotoolkit/cvat/pull/4486>)
155
- Bug: Exif orientation information handled incorrectly (<https://github.com/openvinotoolkit/cvat/pull/4529>)
156
- Fixed build of retinanet function image (<https://github.com/cvat-ai/cvat/pull/54>)
157
- Dataset import for Datumaro, KITTI and VGGFace2 formats (<https://github.com/opencv/cvat/pull/4544>)
158
- Bug: Import dataset of Imagenet format fail (<https://github.com/opencv/cvat/issues/4850>)
159

160
## \[2.0.0] - 2022-03-04
N
Nikita Manovich 已提交
161
### Added
162
- Handle attributes coming from nuclio detectors (<https://github.com/openvinotoolkit/cvat/pull/3917>)
N
Nikita Manovich 已提交
163 164 165 166 167
- Add additional environment variables for Nuclio configuration (<https://github.com/openvinotoolkit/cvat/pull/3894>)
- Add KITTI segmentation and detection format (<https://github.com/openvinotoolkit/cvat/pull/3757>)
- Add LFW format (<https://github.com/openvinotoolkit/cvat/pull/3770>)
- Add Cityscapes format (<https://github.com/openvinotoolkit/cvat/pull/3758>)
- Add Open Images V6 format (<https://github.com/openvinotoolkit/cvat/pull/3679>)
168
- Rotated bounding boxes (<https://github.com/openvinotoolkit/cvat/pull/3832>)
B
Boris Sekachev 已提交
169
- Player option: Smooth image when zoom-in, enabled by default (<https://github.com/openvinotoolkit/cvat/pull/3933>)
M
Maria Khrustaleva 已提交
170
- Google Cloud Storage support in UI (<https://github.com/openvinotoolkit/cvat/pull/3919>)
171
- Add project tasks pagination (<https://github.com/openvinotoolkit/cvat/pull/3910>)
D
Dmitry Kalinin 已提交
172
- Add remove issue button (<https://github.com/openvinotoolkit/cvat/pull/3952>)
M
Maria Khrustaleva 已提交
173
- Data sorting option (<https://github.com/openvinotoolkit/cvat/pull/3937>)
174
- Options to change font size & position of text labels on the canvas (<https://github.com/openvinotoolkit/cvat/pull/3972>)
175
- Add "tag" return type for automatic annotation in Nuclio (<https://github.com/openvinotoolkit/cvat/pull/3896>)
176
- Helm chart: Make user-data-permission-fix optional (<https://github.com/openvinotoolkit/cvat/pull/3994>)
177 178
- Advanced identity access management system, using open policy agent (<https://github.com/openvinotoolkit/cvat/pull/3788>)
- Organizations to create "shared space" for different groups of users (<https://github.com/openvinotoolkit/cvat/pull/3788>)
179
- Dataset importing to a project (<https://github.com/openvinotoolkit/cvat/pull/3790>)
180
- User is able to customize information that text labels show (<https://github.com/openvinotoolkit/cvat/pull/4029>)
181
- Support for uploading manifest with any name (<https://github.com/openvinotoolkit/cvat/pull/4041>)
182
- Added information about OpenVINO toolkit to login page (<https://github.com/openvinotoolkit/cvat/pull/4077>)
183
- Support for working with ellipses (<https://github.com/openvinotoolkit/cvat/pull/4062>)
184
- Add several flags to task creation CLI (<https://github.com/openvinotoolkit/cvat/pull/4119>)
185
- Add YOLOv5 serverless function for automatic annotation (<https://github.com/openvinotoolkit/cvat/pull/4178>)
186
- Add possibility to change git repository and git export format from already created task (<https://github.com/openvinotoolkit/cvat/pull/3886>)
B
Boris Sekachev 已提交
187
- Basic page with jobs list, basic filtration to this list (<https://github.com/openvinotoolkit/cvat/pull/4258>)
188
- Added OpenCV.js TrackerMIL as tracking tool (<https://github.com/openvinotoolkit/cvat/pull/4200>)
189
- Ability to continue working from the latest frame where an annotator was before (<https://github.com/openvinotoolkit/cvat/pull/4297>)
190
- `GET /api/jobs/<id>/commits` was implemented (<https://github.com/openvinotoolkit/cvat/pull/4368>)
191 192
- Advanced filtration and sorting for a list of jobs (<https://github.com/openvinotoolkit/cvat/pull/4319>)

N
Nikita Manovich 已提交
193
### Changed
194
- Users don't have access to a task object anymore if they are assigned only on some jobs of the task (<https://github.com/openvinotoolkit/cvat/pull/3788>)
195
- Different resources (tasks, projects) are not visible anymore for all CVAT instance users by default (<https://github.com/openvinotoolkit/cvat/pull/3788>)
196
- API versioning scheme: using accept header versioning instead of namespace versioning (<https://github.com/openvinotoolkit/cvat/pull/4239>)
197
- Replaced 'django_sendfile' with 'django_sendfile2' (<https://github.com/openvinotoolkit/cvat/pull/4267>)
198
- Use drf-spectacular instead of drf-yasg for swagger documentation (<https://github.com/openvinotoolkit/cvat/pull/4210>)
199
- Update development-environment manual to work under MacOS, supported Mac with Apple Silicon (<https://github.com/openvinotoolkit/cvat/pull/4414>)
N
Nikita Manovich 已提交
200 201

### Deprecated
202
- Job field "status" is not used in UI anymore, but it has not been removed from the database yet (<https://github.com/openvinotoolkit/cvat/pull/3788>)
N
Nikita Manovich 已提交
203 204

### Removed
205
- Review rating, reviewer field from the job instance (use assignee field together with stage field instead) (<https://github.com/openvinotoolkit/cvat/pull/3788>)
N
Nikita Manovich 已提交
206
- Training django app (<https://github.com/openvinotoolkit/cvat/pull/4330>)
207
- v1 api version support (<https://github.com/openvinotoolkit/cvat/pull/4332>)
N
Nikita Manovich 已提交
208 209

### Fixed
210
- Fixed Interaction handler keyboard handlers (<https://github.com/openvinotoolkit/cvat/pull/3881>)
211
- Points of invisible shapes are visible in autobordering (<https://github.com/openvinotoolkit/cvat/pull/3931>)
212
- Order of the label attributes in the object item details(<https://github.com/openvinotoolkit/cvat/pull/3945>)
D
Dmitry Kalinin 已提交
213
- Order of labels in tasks and projects (<https://github.com/openvinotoolkit/cvat/pull/3987>)
K
Kirill Lakhov 已提交
214
- Fixed task creating with large files via webpage (<https://github.com/openvinotoolkit/cvat/pull/3692>)
215
- Added information to export CVAT_HOST when performing local installation for accessing over network (<https://github.com/openvinotoolkit/cvat/pull/4014>)
216
- Fixed possible color collisions in the generated colormap (<https://github.com/openvinotoolkit/cvat/pull/4007>)
217
- Original pdf file is deleted when using share (<https://github.com/openvinotoolkit/cvat/pull/3967>)
M
Maria Khrustaleva 已提交
218
- Order in an annotation file(<https://github.com/openvinotoolkit/cvat/pull/4087>)
219
- Fixed task data upload progressbar (<https://github.com/openvinotoolkit/cvat/pull/4134>)
220
- Email in org invitations is case sensitive (<https://github.com/openvinotoolkit/cvat/pull/4153>)
221
- Caching for tasks and jobs can lead to an exception if its assignee user is removed (<https://github.com/openvinotoolkit/cvat/pull/4165>)
222
- Added intelligent function when paste labels to another task (<https://github.com/openvinotoolkit/cvat/pull/4161>)
223
- Uncaught TypeError: this.el.node.getScreenCTM() is null in Firefox (<https://github.com/openvinotoolkit/cvat/pull/4175>)
224
- Bug: canvas is busy when start playing, start resizing a shape and do not release the mouse cursor (<https://github.com/openvinotoolkit/cvat/pull/4151>)
225
- Bug: could not receive frame N. TypeError: Cannot read properties of undefined (reding "filename") (<https://github.com/openvinotoolkit/cvat/pull/4187>)
226
- Cannot choose a dataset format for a linked repository if a task type is annotation (<https://github.com/openvinotoolkit/cvat/pull/4203>)
227
- Fixed tus upload error over https (<https://github.com/openvinotoolkit/cvat/pull/4154>)
228
- Issues disappear when rescale a browser (<https://github.com/openvinotoolkit/cvat/pull/4189>)
229
- Auth token key is not returned when registering without email verification (<https://github.com/openvinotoolkit/cvat/pull/4092>)
230
- Error in create project from backup for standard 3D annotation (<https://github.com/openvinotoolkit/cvat/pull/4160>)
231
- Annotations search does not work correctly in some corner cases (when use complex properties with width, height) (<https://github.com/openvinotoolkit/cvat/pull/4198>)
232
- Kibana requests are not proxied due to django-revproxy incompatibility with Django >3.2.x (<https://github.com/openvinotoolkit/cvat/issues/4085>)
M
Maria Khrustaleva 已提交
233
- Content type for getting frame with tasks/{id}/data/ endpoint (<https://github.com/openvinotoolkit/cvat/pull/4333>)
234 235
- Bug: Permission error occured when accessing the comments of a specific issue (<https://github.com/openvinotoolkit/cvat/issues/4416>)

N
Nikita Manovich 已提交
236 237

### Security
238
- Updated ELK to 6.8.23 which uses log4j 2.17.1 (<https://github.com/openvinotoolkit/cvat/pull/4206>)
239
- Added validation for URLs which used as remote data source (<https://github.com/openvinotoolkit/cvat/pull/4387>)
N
Nikita Manovich 已提交
240

241
## \[1.7.0] - 2021-11-15
242 243 244

### Added

245
- cvat-ui: support cloud storages (<https://github.com/openvinotoolkit/cvat/pull/3372>)
246
- interactor: add HRNet interactive segmentation serverless function (<https://github.com/openvinotoolkit/cvat/pull/3740>)
247
- Added GPU implementation for SiamMask, reworked tracking approach (<https://github.com/openvinotoolkit/cvat/pull/3571>)
M
Maria Khrustaleva 已提交
248
- Progress bar for manifest creating (<https://github.com/openvinotoolkit/cvat/pull/3712>)
249
- IAM: Open Policy Agent integration (<https://github.com/openvinotoolkit/cvat/pull/3788>)
T
Timur Osmanov 已提交
250 251
- Add a tutorial on attaching cloud storage AWS-S3 (<https://github.com/openvinotoolkit/cvat/pull/3745>)
  and Azure Blob Container (<https://github.com/openvinotoolkit/cvat/pull/3778>)
252
- The feature to remove annotations in a specified range of frames (<https://github.com/openvinotoolkit/cvat/pull/3617>)
A
Andrey Zhavoronkov 已提交
253
- Project backup/restore (<https://github.com/openvinotoolkit/cvat/pull/3852>)
254 255 256

### Changed

257
- UI tracking has been reworked (<https://github.com/openvinotoolkit/cvat/pull/3571>)
258
- Updated Django till 3.2.7 (automatic AppConfig discovery)
M
Maria Khrustaleva 已提交
259
- Manifest generation: Reduce creating time (<https://github.com/openvinotoolkit/cvat/pull/3712>)
260
- Migration from NPM 6 to NPM 7 (<https://github.com/openvinotoolkit/cvat/pull/3773>)
261
- Update Datumaro dependency to 0.2.0 (<https://github.com/openvinotoolkit/cvat/pull/3813>)
262 263 264

### Fixed

265
- Fixed JSON transform issues in network requests (<https://github.com/openvinotoolkit/cvat/pull/3706>)
266
- Display a more user-friendly exception message (<https://github.com/openvinotoolkit/cvat/pull/3721>)
267
- Exception `DataCloneError: The object could not be cloned` (<https://github.com/openvinotoolkit/cvat/pull/3733>)
268
- Fixed extension comparison in task frames CLI (<https://github.com/openvinotoolkit/cvat/pull/3674>)
269
- Incorrect work when copy job list with "Copy" button (<https://github.com/openvinotoolkit/cvat/pull/3749>)
270
- Iterating over manifest (<https://github.com/openvinotoolkit/cvat/pull/3792>)
M
Maria Khrustaleva 已提交
271
- Manifest removing (<https://github.com/openvinotoolkit/cvat/pull/3791>)
272
- Fixed project updated date (<https://github.com/openvinotoolkit/cvat/pull/3814>)
S
Stella Alice Schlotter 已提交
273
- Fixed dextr deployment (<https://github.com/openvinotoolkit/cvat/pull/3820>)
274
- Migration of `dataset_repo` application (<https://github.com/openvinotoolkit/cvat/pull/3827>)
275
- Helm settings for external psql database were unused by backend (<https://github.com/openvinotoolkit/cvat/pull/3779>)
276
- Updated WSL setup for development (<https://github.com/openvinotoolkit/cvat/pull/3828>)
A
Andrey Zhavoronkov 已提交
277
- Helm chart config (<https://github.com/openvinotoolkit/cvat/pull/3784>)
278 279 280

### Security

T
Timur Osmanov 已提交
281 282
- Fix security issues on the documentation website unsafe use of target blank
  and potential clickjacking on legacy browsers (<https://github.com/openvinotoolkit/cvat/pull/3789>)
283

N
Nikita Manovich 已提交
284
## \[1.6.0] - 2021-09-17
285 286 287

### Added

288
- Added ability to import data from share with cli without copying the data (<https://github.com/openvinotoolkit/cvat/issues/2862>)
289
- Notification if the browser does not support nesassary API
290
- Added ability to export project as a dataset (<https://github.com/openvinotoolkit/cvat/pull/3365>)
291
  and project with 3D tasks (<https://github.com/openvinotoolkit/cvat/pull/3502>)
292
- Additional inline tips in interactors with demo gifs (<https://github.com/openvinotoolkit/cvat/pull/3473>)
293
- Added intelligent scissors blocking feature (<https://github.com/openvinotoolkit/cvat/pull/3510>)
294 295
- Support cloud storage status (<https://github.com/openvinotoolkit/cvat/pull/3386>)
- Support cloud storage preview (<https://github.com/openvinotoolkit/cvat/pull/3386>)
296
- cvat-core: support cloud storages (<https://github.com/openvinotoolkit/cvat/pull/3313>)
297 298 299

### Changed

300 301
- Non-blocking UI when using interactors (<https://github.com/openvinotoolkit/cvat/pull/3473>)
- "Selected opacity" slider now defines opacity level for shapes being drawnSelected opacity (<https://github.com/openvinotoolkit/cvat/pull/3473>)
302 303
- Cloud storage creating and updating (<https://github.com/openvinotoolkit/cvat/pull/3386>)
- Way of working with cloud storage content (<https://github.com/openvinotoolkit/cvat/pull/3386>)
304 305 306

### Removed

307
- Support TEMP_KEY_SECRET_KEY_TOKEN_SET for AWS S3 cloud storage (<https://github.com/openvinotoolkit/cvat/pull/3386>)
308 309 310

### Fixed

311
- Fixed multiple tasks moving (<https://github.com/openvinotoolkit/cvat/pull/3517>)
312
- Fixed task creating CLI parameter (<https://github.com/openvinotoolkit/cvat/pull/3519>)
313
- Fixed import for MOTS format (<https://github.com/openvinotoolkit/cvat/pull/3612>)
314

N
Nikita Manovich 已提交
315
## \[1.5.0] - 2021-08-02
316 317 318

### Added

319
- Support of context images for 2D image tasks (<https://github.com/openvinotoolkit/cvat/pull/3122>)
320
- Support of cloud storage without copying data into CVAT: server part (<https://github.com/openvinotoolkit/cvat/pull/2620>)
321
- Filter `is_active` for user list (<https://github.com/openvinotoolkit/cvat/pull/3235>)
322
- Ability to export/import tasks (<https://github.com/openvinotoolkit/cvat/pull/3056>)
323
- Add a tutorial for semi-automatic/automatic annotation (<https://github.com/openvinotoolkit/cvat/pull/3124>)
324
- Explicit "Done" button when drawing any polyshapes (<https://github.com/openvinotoolkit/cvat/pull/3417>)
325
- Histogram equalization with OpenCV javascript (<https://github.com/openvinotoolkit/cvat/pull/3447>)
326
- Client-side polyshapes approximation when using semi-automatic interactors & scissors (<https://github.com/openvinotoolkit/cvat/pull/3450>)
327
- Support of Google Cloud Storage for cloud storage (<https://github.com/openvinotoolkit/cvat/pull/3561>)
328

329 330
### Changed

331
- Updated manifest format, added meta with related images (<https://github.com/openvinotoolkit/cvat/pull/3122>)
332
- Update of COCO format documentation (<https://github.com/openvinotoolkit/cvat/pull/3197>)
N
Nikita Manovich 已提交
333
- Updated Webpack Dev Server config to add proxy (<https://github.com/openvinotoolkit/cvat/pull/3368>)
M
MashaSS 已提交
334
- Update to Django 3.1.12 (<https://github.com/openvinotoolkit/cvat/pull/3378>)
335 336
- Updated visibility for removable points in AI tools (<https://github.com/openvinotoolkit/cvat/pull/3417>)
- Updated UI handling for IOG serverless function (<https://github.com/openvinotoolkit/cvat/pull/3417>)
337 338
- Changed Nginx proxy to Traefik in `docker-compose.yml` (<https://github.com/openvinotoolkit/cvat/pull/3409>)
- Simplify the process of deploying CVAT with HTTPS (<https://github.com/openvinotoolkit/cvat/pull/3409>)
339 340 341

### Fixed

342
- Project page requests took a long time and did many DB queries (<https://github.com/openvinotoolkit/cvat/pull/3223>)
D
Dmitry Kalinin 已提交
343
- Fixed Python 3.6 support (<https://github.com/openvinotoolkit/cvat/pull/3258>)
344
- Incorrect attribute import in tracks (<https://github.com/openvinotoolkit/cvat/pull/3229>)
345
- Issue "is not a constructor" when create object, save, undo, save, redo save (<https://github.com/openvinotoolkit/cvat/pull/3292>)
346
- Fix CLI create an infinite loop if git repository responds with failure (<https://github.com/openvinotoolkit/cvat/pull/3267>)
347
- Bug with sidebar & fullscreen (<https://github.com/openvinotoolkit/cvat/pull/3289>)
348
- 504 Gateway Time-out on `data/meta` requests (<https://github.com/openvinotoolkit/cvat/pull/3269>)
349 350
- TypeError: Cannot read property 'clientX' of undefined when draw cuboids with hotkeys (<https://github.com/openvinotoolkit/cvat/pull/3308>)
- Duplication of the cuboids when redraw them (<https://github.com/openvinotoolkit/cvat/pull/3308>)
351
- Some code issues in Deep Extreme Cut handler code (<https://github.com/openvinotoolkit/cvat/pull/3325>)
N
Nikita Manovich 已提交
352
- UI fails when inactive user is assigned to a task/job (<https://github.com/openvinotoolkit/cvat/pull/3343>)
353
- Calculate precise progress of decoding a video file (<https://github.com/openvinotoolkit/cvat/pull/3381>)
354 355
- Falsely successful `cvat_ui` image build in case of OOM error that leads to the default nginx welcome page
  (<https://github.com/openvinotoolkit/cvat/pull/3379>)
356
- Fixed issue when save filtered object in AAM (<https://github.com/openvinotoolkit/cvat/pull/3401>)
357
- Context image disappears after undo/redo (<https://github.com/openvinotoolkit/cvat/pull/3416>)
358
- Using combined data sources (directory and image) when create a task (<https://github.com/openvinotoolkit/cvat/pull/3424>)
359
- Creating task with labels in project (<https://github.com/openvinotoolkit/cvat/pull/3454>)
360
- Move task and autoannotation modals were invisible from project page (<https://github.com/openvinotoolkit/cvat/pull/3475>)
361

362
## \[1.4.0] - 2021-05-18
363 364

### Added
365

366
- Documentation on mask annotation (<https://github.com/openvinotoolkit/cvat/pull/3044>)
367
- Hotkeys to switch a label of existing object or to change default label (for objects created with N) (<https://github.com/openvinotoolkit/cvat/pull/3070>)
368
- A script to convert some kinds of DICOM files to regular images (<https://github.com/openvinotoolkit/cvat/pull/3095>)
K
Kirpichev Michael 已提交
369
- Helm chart prototype (<https://github.com/openvinotoolkit/cvat/pull/3102>)
370
- Initial implementation of moving tasks between projects (<https://github.com/openvinotoolkit/cvat/pull/3164>)
K
Kirpichev Michael 已提交
371

372
### Changed
373

374 375
- Place of migration logger initialization (<https://github.com/openvinotoolkit/cvat/pull/3170>)

376
### Removed
377

378 379
- Kubernetes templates from (<https://github.com/openvinotoolkit/cvat/pull/1962>) due to helm charts (<https://github.com/openvinotoolkit/cvat/pull/3171>)

380
### Fixed
381

382
- Export of instance masks with holes (<https://github.com/openvinotoolkit/cvat/pull/3044>)
383
- Changing a label on canvas does not work when 'Show object details' enabled (<https://github.com/openvinotoolkit/cvat/pull/3084>)
M
Max Wang 已提交
384
- Make sure frame unzip web worker correctly terminates after unzipping all images in a requested chunk (<https://github.com/openvinotoolkit/cvat/pull/3096>)
385
- Reset password link was unavailable before login (<https://github.com/openvinotoolkit/cvat/pull/3140>)
M
Maria Khrustaleva 已提交
386
- Manifest: migration (<https://github.com/openvinotoolkit/cvat/pull/3146>)
387
- Fixed cropping polygon in some corner cases (<https://github.com/openvinotoolkit/cvat/pull/3184>)
388

389
## \[1.3.0] - 3/31/2021
390

391
### Added
392

393
- CLI: Add support for saving annotations in a git repository when creating a task.
394
- CVAT-3D: support lidar data on the server side (<https://github.com/openvinotoolkit/cvat/pull/2534>)
395
- GPU support for Mask-RCNN and improvement in its deployment time (<https://github.com/openvinotoolkit/cvat/pull/2714>)
M
manasars 已提交
396 397
- CVAT-3D: Load all frames corresponding to the job instance
  (<https://github.com/openvinotoolkit/cvat/pull/2645>)
398
- Intelligent scissors with OpenCV javascript (<https://github.com/openvinotoolkit/cvat/pull/2689>)
M
manasars 已提交
399
- CVAT-3D: Visualize 3D point cloud spaces in 3D View, Top View Side View and Front View (<https://github.com/openvinotoolkit/cvat/pull/2768>)
400 401
- [Inside Outside Guidance](https://github.com/shiyinzhang/Inside-Outside-Guidance) serverless
  function for interactive segmentation
402 403
- Pre-built [cvat_server](https://hub.docker.com/r/openvino/cvat_server) and
  [cvat_ui](https://hub.docker.com/r/openvino/cvat_ui) images were published on DockerHub (<https://github.com/openvinotoolkit/cvat/pull/2766>)
D
Dmitry Kalinin 已提交
404
- Project task subsets (<https://github.com/openvinotoolkit/cvat/pull/2774>)
405
- Kubernetes templates and guide for their deployment (<https://github.com/openvinotoolkit/cvat/pull/1962>)
406 407
- [WiderFace](http://shuoyang1213.me/WIDERFACE/) format support (<https://github.com/openvinotoolkit/cvat/pull/2864>)
- [VGGFace2](https://github.com/ox-vgg/vgg_face2) format support (<https://github.com/openvinotoolkit/cvat/pull/2865>)
408
- [Backup/Restore guide](cvat/apps/documentation/backup_guide.md) (<https://github.com/openvinotoolkit/cvat/pull/2964>)
D
Dmitry Kalinin 已提交
409
- Label deletion from tasks and projects (<https://github.com/openvinotoolkit/cvat/pull/2881>)
M
manasars 已提交
410 411
- CVAT-3D: Implemented initial cuboid placement in 3D View and select cuboid in Top, Side and Front views
  (<https://github.com/openvinotoolkit/cvat/pull/2891>)
412
- [Market-1501](https://www.aitribune.com/dataset/2018051063) format support (<https://github.com/openvinotoolkit/cvat/pull/2869>)
M
Maria Khrustaleva 已提交
413
- Ability of upload manifest for dataset with images (<https://github.com/openvinotoolkit/cvat/pull/2763>)
414
- Annotations filters UI using react-awesome-query-builder (<https://github.com/openvinotoolkit/cvat/issues/1418>)
415
- Storing settings in local storage to keep them between browser sessions (<https://github.com/openvinotoolkit/cvat/pull/3017>)
416
- [ICDAR](https://rrc.cvc.uab.es/?ch=2) format support (<https://github.com/openvinotoolkit/cvat/pull/2866>)
417
- Added switcher to maintain polygon crop behavior (<https://github.com/openvinotoolkit/cvat/pull/3021>
418
- Filters and sorting options for job list, added tooltip for tasks filters (<https://github.com/openvinotoolkit/cvat/pull/3030>)
419 420

### Changed
421

A
Ali Jahani 已提交
422
- CLI - task list now returns a list of current tasks. (<https://github.com/openvinotoolkit/cvat/pull/2863>)
423
- Updated HTTPS install README section (cleanup and described more robust deploy)
P
PMazarovich 已提交
424
- Logstash is improved for using with configurable elasticsearch outputs (<https://github.com/openvinotoolkit/cvat/pull/2531>)
425
- Bumped nuclio version to 1.5.16 (<https://github.com/openvinotoolkit/cvat/pull/2578>)
426
- All methods for interactive segmentation accept negative points as well
427
- Persistent queue added to logstash (<https://github.com/openvinotoolkit/cvat/pull/2744>)
428
- Improved maintenance of popups visibility (<https://github.com/openvinotoolkit/cvat/pull/2809>)
429
- Image visualizations settings on canvas for faster access (<https://github.com/openvinotoolkit/cvat/pull/2872>)
430
- Better scale management of left panel when screen is too small (<https://github.com/openvinotoolkit/cvat/pull/2880>)
431
- Improved error messages for annotation import (<https://github.com/openvinotoolkit/cvat/pull/2935>)
M
Maria Khrustaleva 已提交
432
- Using manifest support instead video meta information and dummy chunks (<https://github.com/openvinotoolkit/cvat/pull/2763>)
433 434

### Fixed
435

436
- More robust execution of nuclio GPU functions by limiting the GPU memory consumption per worker (<https://github.com/openvinotoolkit/cvat/pull/2714>)
437
- Kibana startup initialization (<https://github.com/openvinotoolkit/cvat/pull/2659>)
438
- The cursor jumps to the end of the line when renaming a task (<https://github.com/openvinotoolkit/cvat/pull/2669>)
439
- SSLCertVerificationError when remote source is used (<https://github.com/openvinotoolkit/cvat/pull/2683>)
440
- Fixed filters select overflow (<https://github.com/openvinotoolkit/cvat/pull/2614>)
441
- Fixed tasks in project auto annotation (<https://github.com/openvinotoolkit/cvat/pull/2725>)
442
- Cuboids are missed in annotations statistics (<https://github.com/openvinotoolkit/cvat/pull/2704>)
443
- The list of files attached to the task is not displayed (<https://github.com/openvinotoolkit/cvat/pull/2706>)
444
- A couple of css-related issues (top bar disappear, wrong arrow position on collapse elements) (<https://github.com/openvinotoolkit/cvat/pull/2736>)
445
- Issue with point region doesn't work in Firefox (<https://github.com/openvinotoolkit/cvat/pull/2727>)
446
- Fixed cuboid perspective change (<https://github.com/openvinotoolkit/cvat/pull/2733>)
447
- Annotation page popups (ai tools, drawing) reset state after detecting, tracking, drawing (<https://github.com/openvinotoolkit/cvat/pull/2780>)
B
Boris Sekachev 已提交
448
- Polygon editing using trailing point (<https://github.com/openvinotoolkit/cvat/pull/2808>)
449
- Updated the path to python for DL models inside automatic annotation documentation (<https://github.com/openvinotoolkit/cvat/pull/2847>)
450
- Fixed of receiving function variable (<https://github.com/openvinotoolkit/cvat/pull/2860>)
451
- Shortcuts with CAPSLOCK enabled and with non-US languages activated (<https://github.com/openvinotoolkit/cvat/pull/2872>)
452
- Prevented creating several issues for the same object (<https://github.com/openvinotoolkit/cvat/pull/2868>)
453
- Fixed label editor name field validator (<https://github.com/openvinotoolkit/cvat/pull/2879>)
M
Maxim Zhiltsov 已提交
454
- An error about track shapes outside of the task frames during export (<https://github.com/openvinotoolkit/cvat/pull/2890>)
455
- Fixed project search field updating (<https://github.com/openvinotoolkit/cvat/pull/2901>)
456
- Fixed export error when invalid polygons are present in overlapping frames (<https://github.com/openvinotoolkit/cvat/pull/2852>)
457
- Fixed image quality option for tasks created from images (<https://github.com/openvinotoolkit/cvat/pull/2963>)
458
- Incorrect text on the warning when specifying an incorrect link to the issue tracker (<https://github.com/openvinotoolkit/cvat/pull/2971>)
459
- Updating label attributes when label contains number attributes (<https://github.com/openvinotoolkit/cvat/pull/2969>)
460
- Crop a polygon if its points are outside the bounds of the image (<https://github.com/openvinotoolkit/cvat/pull/3025>)
461

462
## \[1.2.0] - 2021-01-08
463 464 465

### Fixed

466
- Memory consumption for the task creation process (<https://github.com/openvinotoolkit/cvat/pull/2582>)
A
Andrey Zhavoronkov 已提交
467
- Frame preloading (<https://github.com/openvinotoolkit/cvat/pull/2608>)
B
Boris Sekachev 已提交
468
- Project cannot be removed from the project page (<https://github.com/openvinotoolkit/cvat/pull/2626>)
469

470
## \[1.2.0-beta] - 2020-12-15
471 472

### Added
473

474
- GPU support and improved documentation for auto annotation (<https://github.com/openvinotoolkit/cvat/pull/2546>)
475
- Manual review pipeline: issues/comments/workspace (<https://github.com/openvinotoolkit/cvat/pull/2357>)
A
Anastasia Yasakova 已提交
476 477 478
- Basic projects implementation (<https://github.com/openvinotoolkit/cvat/pull/2255>)
- Documentation on how to mount cloud starage(AWS S3 bucket, Azure container, Google Drive) as FUSE (<https://github.com/openvinotoolkit/cvat/pull/2377>)
- Ability to work with share files without copying inside (<https://github.com/openvinotoolkit/cvat/pull/2377>)
B
Boris Sekachev 已提交
479
- Tooltips in label selectors (<https://github.com/openvinotoolkit/cvat/pull/2509>)
B
Boris Sekachev 已提交
480
- Page redirect after login using `next` query parameter (<https://github.com/openvinotoolkit/cvat/pull/2527>)
A
Anastasia Yasakova 已提交
481 482
- [ImageNet](http://www.image-net.org) format support (<https://github.com/openvinotoolkit/cvat/pull/2376>)
- [CamVid](http://mi.eng.cam.ac.uk/research/projects/VideoRec/CamVid/) format support (<https://github.com/openvinotoolkit/cvat/pull/2559>)
D
Dmitry Kalinin 已提交
483

484
### Changed
485

D
Dmitry Kalinin 已提交
486
- PATCH requests from cvat-core submit only changed fields (<https://github.com/openvinotoolkit/cvat/pull/2445>)
487
- deploy.sh in serverless folder is separated into deploy_cpu.sh and deploy_gpu.sh (<https://github.com/openvinotoolkit/cvat/pull/2546>)
488
- Bumped nuclio version to 1.5.8
B
Boris Sekachev 已提交
489
- Migrated to Antd 4.9 (<https://github.com/openvinotoolkit/cvat/pull/2536>)
490 491

### Fixed
492

493
- Fixed FastRCNN inference bug for images with 4 channels i.e. png (<https://github.com/openvinotoolkit/cvat/pull/2546>)
494
- Django templates for email and user guide (<https://github.com/openvinotoolkit/cvat/pull/2412>)
B
Boris Sekachev 已提交
495 496
- Saving relative paths in dummy chunks instead of absolute (<https://github.com/openvinotoolkit/cvat/pull/2424>)
- Objects with a specific label cannot be displayed if at least one tag with the label exist (<https://github.com/openvinotoolkit/cvat/pull/2435>)
B
Boris Sekachev 已提交
497
- Wrong attribute can be removed in labels editor (<https://github.com/openvinotoolkit/cvat/pull/2436>)
B
Boris Sekachev 已提交
498
- UI fails with the error "Cannot read property 'label' of undefined" (<https://github.com/openvinotoolkit/cvat/pull/2442>)
B
Boris Sekachev 已提交
499
- Exception: "Value must be a user instance" (<https://github.com/openvinotoolkit/cvat/pull/2441>)
B
Boris Sekachev 已提交
500
- Reset zoom option doesn't work in tag annotation mode (<https://github.com/openvinotoolkit/cvat/pull/2443>)
501
- Canvas is busy error (<https://github.com/openvinotoolkit/cvat/pull/2437>)
D
Dmitry Kalinin 已提交
502
- Projects view layout fix (<https://github.com/openvinotoolkit/cvat/pull/2503>)
A
Andrey Zhavoronkov 已提交
503
- Fixed the tasks view (infinite loading) when it is impossible to get a preview of the task (<https://github.com/openvinotoolkit/cvat/pull/2504>)
B
Boris Sekachev 已提交
504
- Empty frames navigation (<https://github.com/openvinotoolkit/cvat/pull/2505>)
B
Boris Sekachev 已提交
505
- TypeError: Cannot read property 'toString' of undefined (<https://github.com/openvinotoolkit/cvat/pull/2517>)
B
Boris Sekachev 已提交
506
- Extra shapes are drawn after Esc, or G pressed while drawing a region in grouping (<https://github.com/openvinotoolkit/cvat/pull/2507>)
B
Boris Sekachev 已提交
507
- Reset state (reviews, issues) after logout or changing a job (<https://github.com/openvinotoolkit/cvat/pull/2525>)
B
Boris Sekachev 已提交
508
- TypeError: Cannot read property 'id' of undefined when updating a task (<https://github.com/openvinotoolkit/cvat/pull/2544>)
509

510
## \[1.2.0-alpha] - 2020-11-09
511

N
Nikita Manovich 已提交
512
### Added
V
Vitaliy Nishukov 已提交
513 514 515 516

- Ability to login into CVAT-UI with token from api/v1/auth/login (<https://github.com/openvinotoolkit/cvat/pull/2234>)
- Added layout grids toggling ('ctrl + alt + Enter')
- Added password reset functionality (<https://github.com/opencv/cvat/pull/2058>)
517
- Ability to work with data on the fly (<https://github.com/opencv/cvat/pull/2007>)
V
Vitaliy Nishukov 已提交
518 519 520 521
- Annotation in process outline color wheel (<https://github.com/opencv/cvat/pull/2084>)
- On the fly annotation using DL detectors (<https://github.com/opencv/cvat/pull/2102>)
- Displaying automatic annotation progress on a task view (<https://github.com/opencv/cvat/pull/2148>)
- Automatic tracking of bounding boxes using serverless functions (<https://github.com/opencv/cvat/pull/2136>)
522 523
- \[Datumaro] CLI command for dataset equality comparison (<https://github.com/opencv/cvat/pull/1989>)
- \[Datumaro] Merging of datasets with different labels (<https://github.com/opencv/cvat/pull/2098>)
V
Vitaliy Nishukov 已提交
524 525 526 527 528 529 530 531 532
- Add FBRS interactive segmentation serverless function (<https://github.com/openvinotoolkit/cvat/pull/2094>)
- Ability to change default behaviour of previous/next buttons of a player.
  It supports regular navigation, searching a frame according to annotations
  filters and searching the nearest frame without any annotations (<https://github.com/openvinotoolkit/cvat/pull/2221>)
- MacOS users notes in CONTRIBUTING.md
- Ability to prepare meta information manually (<https://github.com/openvinotoolkit/cvat/pull/2217>)
- Ability to upload prepared meta information along with a video when creating a task (<https://github.com/openvinotoolkit/cvat/pull/2217>)
- Optional chaining plugin for cvat-canvas and cvat-ui (<https://github.com/openvinotoolkit/cvat/pull/2249>)
- MOTS png mask format support (<https://github.com/openvinotoolkit/cvat/pull/2198>)
533
- Ability to correct upload video with a rotation record in the metadata (<https://github.com/openvinotoolkit/cvat/pull/2218>)
D
Dmitry Kalinin 已提交
534
- User search field for assignee fields (<https://github.com/openvinotoolkit/cvat/pull/2370>)
535
- Support of mxf videos (<https://github.com/openvinotoolkit/cvat/pull/2514>)
N
Nikita Manovich 已提交
536 537

### Changed
V
Vitaliy Nishukov 已提交
538 539 540 541 542

- UI models (like DEXTR) were redesigned to be more interactive (<https://github.com/opencv/cvat/pull/2054>)
- Used Ubuntu:20.04 as a base image for CVAT Dockerfile (<https://github.com/opencv/cvat/pull/2101>)
- Right colors of label tags in label mapping when a user runs automatic detection (<https://github.com/openvinotoolkit/cvat/pull/2162>)
- Nuclio became an optional component of CVAT (<https://github.com/openvinotoolkit/cvat/pull/2192>)
543
- A key to remove a point from a polyshape (Ctrl => Alt) (<https://github.com/openvinotoolkit/cvat/pull/2204>)
V
Vitaliy Nishukov 已提交
544 545 546
- Updated `docker-compose` file version from `2.3` to `3.3`(<https://github.com/openvinotoolkit/cvat/pull/2235>)
- Added auto inference of url schema from host in CLI, if provided (<https://github.com/openvinotoolkit/cvat/pull/2240>)
- Track frames in skips between annotation is presented in MOT and MOTS formats are marked `outside` (<https://github.com/openvinotoolkit/cvat/pull/2198>)
D
Dmitry Kalinin 已提交
547
- UI packages installation with `npm ci` instead of `npm install` (<https://github.com/openvinotoolkit/cvat/pull/2350>)
N
Nikita Manovich 已提交
548 549

### Removed
550

N
Nikita Manovich 已提交
551
- Removed Z-Order flag from task creation process
N
Nikita Manovich 已提交
552 553

### Fixed
V
Vitaliy Nishukov 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571

- Fixed multiple errors which arises when polygon is of length 5 or less (<https://github.com/opencv/cvat/pull/2100>)
- Fixed task creation from PDF (<https://github.com/opencv/cvat/pull/2141>)
- Fixed CVAT format import for frame stepped tasks (<https://github.com/openvinotoolkit/cvat/pull/2151>)
- Fixed the reading problem with large PDFs (<https://github.com/openvinotoolkit/cvat/pull/2154>)
- Fixed unnecessary pyhash dependency (<https://github.com/openvinotoolkit/cvat/pull/2170>)
- Fixed Data is not getting cleared, even after deleting the Task from Django Admin App(<https://github.com/openvinotoolkit/cvat/issues/1925>)
- Fixed blinking message: "Some tasks have not been showed because they do not have any data" (<https://github.com/openvinotoolkit/cvat/pull/2200>)
- Fixed case when a task with 0 jobs is shown as "Completed" in UI (<https://github.com/openvinotoolkit/cvat/pull/2200>)
- Fixed use case when UI throws exception: Cannot read property 'objectType' of undefined #2053 (<https://github.com/openvinotoolkit/cvat/pull/2203>)
- Fixed use case when logs could be saved twice or more times #2202 (<https://github.com/openvinotoolkit/cvat/pull/2203>)
- Fixed issues from #2112 (<https://github.com/openvinotoolkit/cvat/pull/2217>)
- Git application name (renamed to dataset_repo) (<https://github.com/openvinotoolkit/cvat/pull/2243>)
- A problem in exporting of tracks, where tracks could be truncated (<https://github.com/openvinotoolkit/cvat/issues/2129>)
- Fixed CVAT startup process if the user has `umask 077` in .bashrc file (<https://github.com/openvinotoolkit/cvat/pull/2293>)
- Exception: Cannot read property "each" of undefined after drawing a single point (<https://github.com/openvinotoolkit/cvat/pull/2307>)
- Cannot read property 'label' of undefined (Fixed?) (<https://github.com/openvinotoolkit/cvat/pull/2311>)
- Excluded track frames marked `outside` in `CVAT for Images` export (<https://github.com/openvinotoolkit/cvat/pull/2345>)
572
- 'List of tasks' Kibana visualization (<https://github.com/openvinotoolkit/cvat/pull/2361>)
Z
Zhiltsov Max 已提交
573
- An error on exporting not `jpg` or `png` images in TF Detection API format (<https://github.com/openvinotoolkit/datumaro/issues/35>)
N
Nikita Manovich 已提交
574

575
## \[1.1.0] - 2020-08-31
576

577
### Added
578

V
Vitaliy Nishukov 已提交
579
- Siammask tracker as DL serverless function (<https://github.com/opencv/cvat/pull/1988>)
580 581
- \[Datumaro] Added model info and source info commands (<https://github.com/opencv/cvat/pull/1973>)
- \[Datumaro] Dataset statistics (<https://github.com/opencv/cvat/pull/1668>)
V
Vitaliy Nishukov 已提交
582
- Ability to change label color in tasks and predefined labels (<https://github.com/opencv/cvat/pull/2014>)
583
- \[Datumaro] Multi-dataset merge (<https://github.com/opencv/cvat/pull/1695>)
V
Vitaliy Nishukov 已提交
584 585 586
- Ability to configure email verification for new users (<https://github.com/opencv/cvat/pull/1929>)
- Link to django admin page from UI (<https://github.com/opencv/cvat/pull/2068>)
- Notification message when users use wrong browser (<https://github.com/opencv/cvat/pull/2070>)
587 588

### Changed
589

V
Vitaliy Nishukov 已提交
590 591
- Shape coordinates are rounded to 2 digits in dumped annotations (<https://github.com/opencv/cvat/pull/1970>)
- COCO format does not produce polygon points for bbox annotations (<https://github.com/opencv/cvat/pull/1953>)
592 593

### Fixed
594

V
Vitaliy Nishukov 已提交
595 596 597 598 599 600
- Issue loading openvino models for semi-automatic and automatic annotation (<https://github.com/opencv/cvat/pull/1996>)
- Basic functions of CVAT works without activated nuclio dashboard
- Fixed a case in which exported masks could have wrong color order (<https://github.com/opencv/cvat/issues/2032>)
- Fixed error with creating task with labels with the same name (<https://github.com/opencv/cvat/pull/2031>)
- Django RQ dashboard view (<https://github.com/opencv/cvat/pull/2069>)
- Object's details menu settings (<https://github.com/opencv/cvat/pull/2084>)
601

602
## \[1.1.0-beta] - 2020-08-03
603

604
### Added
605

V
Vitaliy Nishukov 已提交
606 607 608 609
- DL models as serverless functions (<https://github.com/opencv/cvat/pull/1767>)
- Source type support for tags, shapes and tracks (<https://github.com/opencv/cvat/pull/1192>)
- Source type support for CVAT Dumper/Loader (<https://github.com/opencv/cvat/pull/1192>)
- Intelligent polygon editing (<https://github.com/opencv/cvat/pull/1921>)
610
- Support creating multiple jobs for each task through python cli (<https://github.com/opencv/cvat/pull/1950>)
V
Vitaliy Nishukov 已提交
611 612 613
- python cli over https (<https://github.com/opencv/cvat/pull/1942>)
- Error message when plugins weren't able to initialize instead of infinite loading (<https://github.com/opencv/cvat/pull/1966>)
- Ability to change user password (<https://github.com/opencv/cvat/pull/1954>)
614 615

### Changed
616

V
Vitaliy Nishukov 已提交
617 618
- Smaller object details (<https://github.com/opencv/cvat/pull/1877>)
- `COCO` format does not convert bboxes to polygons on export (<https://github.com/opencv/cvat/pull/1953>)
619 620 621
- It is impossible to submit a DL model in OpenVINO format using UI.
  Now you can deploy new models on the server using serverless functions
  (<https://github.com/opencv/cvat/pull/1767>)
V
Vitaliy Nishukov 已提交
622
- Files and folders under share path are now alphabetically sorted
623 624

### Removed
625

V
Vitaliy Nishukov 已提交
626 627
- Removed OpenVINO and CUDA components because they are not necessary anymore (<https://github.com/opencv/cvat/pull/1767>)
- Removed the old UI code (<https://github.com/opencv/cvat/pull/1964>)
628 629

### Fixed
630

V
Vitaliy Nishukov 已提交
631 632 633 634 635 636
- Some objects aren't shown on canvas sometimes. For example after propagation on of objects is invisible (<https://github.com/opencv/cvat/pull/1834>)
- CVAT doesn't offer to restore state after an error (<https://github.com/opencv/cvat/pull/1874>)
- Cannot read property 'shapeType' of undefined because of zOrder related issues (<https://github.com/opencv/cvat/pull/1874>)
- Cannot read property 'pinned' of undefined because of zOrder related issues (<https://github.com/opencv/cvat/pull/1874>)
- Do not iterate over hidden objects in aam (which are invisible because of zOrder) (<https://github.com/opencv/cvat/pull/1874>)
- Cursor position is reset after changing a text field (<https://github.com/opencv/cvat/pull/1874>)
637
- Hidden points and cuboids can be selected to be grouped (<https://github.com/opencv/cvat/pull/1874>)
V
Vitaliy Nishukov 已提交
638 639 640
- `outside` annotations should not be in exported images (<https://github.com/opencv/cvat/issues/1620>)
- `CVAT for video format` import error with interpolation (<https://github.com/opencv/cvat/issues/1893>)
- `Image compression` definition mismatch (<https://github.com/opencv/cvat/issues/1900>)
641
- Points are duplicated during polygon interpolation sometimes (<https://github.com/opencv/cvat/pull/1892>)
V
Vitaliy Nishukov 已提交
642 643 644 645 646 647 648
- When redraw a shape with activated autobordering, previous points are visible (<https://github.com/opencv/cvat/pull/1892>)
- No mapping between side object element and context menu in some attributes (<https://github.com/opencv/cvat/pull/1923>)
- Interpolated shapes exported as `keyframe = True` (<https://github.com/opencv/cvat/pull/1937>)
- Stylelint filetype scans (<https://github.com/opencv/cvat/pull/1952>)
- Fixed toolip closing issue (<https://github.com/opencv/cvat/pull/1955>)
- Clearing frame cache when close a task (<https://github.com/opencv/cvat/pull/1966>)
- Increase rate of throttling policy for unauthenticated users (<https://github.com/opencv/cvat/pull/1969>)
649

650
## \[1.1.0-alpha] - 2020-06-30
651

652
### Added
653

V
Vitaliy Nishukov 已提交
654 655 656 657 658 659 660 661 662 663 664
- Throttling policy for unauthenticated users (<https://github.com/opencv/cvat/pull/1531>)
- Added default label color table for mask export (<https://github.com/opencv/cvat/pull/1549>)
- Added environment variables for Redis and Postgres hosts for Kubernetes deployment support (<https://github.com/opencv/cvat/pull/1641>)
- Added visual identification for unavailable formats (<https://github.com/opencv/cvat/pull/1567>)
- Shortcut to change color of an activated shape in new UI (Enter) (<https://github.com/opencv/cvat/pull/1683>)
- Shortcut to switch split mode (<https://github.com/opencv/cvat/pull/1683>)
- Built-in search for labels when create an object or change a label (<https://github.com/opencv/cvat/pull/1683>)
- Better validation of labels and attributes in raw viewer (<https://github.com/opencv/cvat/pull/1727>)
- ClamAV antivirus integration (<https://github.com/opencv/cvat/pull/1712>)
- Added canvas background color selector (<https://github.com/opencv/cvat/pull/1705>)
- SCSS files linting with Stylelint tool (<https://github.com/opencv/cvat/pull/1766>)
665 666 667
- Supported import and export or single boxes in MOT format (<https://github.com/opencv/cvat/pull/1764>)
- \[Datumaro] Added `stats` command, which shows some dataset statistics
  like image mean and std (<https://github.com/opencv/cvat/pull/1734>)
V
Vitaliy Nishukov 已提交
668 669 670 671 672 673 674 675 676
- Add option to upload annotations upon task creation on CLI
- Polygon and polylines interpolation (<https://github.com/opencv/cvat/pull/1571>)
- Ability to redraw shape from scratch (Shift + N) for an activated shape (<https://github.com/opencv/cvat/pull/1571>)
- Highlights for the first point of a polygon/polyline and direction (<https://github.com/opencv/cvat/pull/1571>)
- Ability to change orientation for poylgons/polylines in context menu (<https://github.com/opencv/cvat/pull/1571>)
- Ability to set the first point for polygons in points context menu (<https://github.com/opencv/cvat/pull/1571>)
- Added new tag annotation workspace (<https://github.com/opencv/cvat/pull/1570>)
- Appearance block in attribute annotation mode (<https://github.com/opencv/cvat/pull/1820>)
- Keyframe navigations and some switchers in attribute annotation mode (<https://github.com/opencv/cvat/pull/1820>)
677 678 679
- \[Datumaro] Added `convert` command to convert datasets directly (<https://github.com/opencv/cvat/pull/1837>)
- \[Datumaro] Added an option to specify image extension when exporting datasets (<https://github.com/opencv/cvat/pull/1799>)
- \[Datumaro] Added image copying when exporting datasets, if possible (<https://github.com/opencv/cvat/pull/1799>)
680 681

### Changed
682

V
Vitaliy Nishukov 已提交
683
- Removed information about e-mail from the basic user information (<https://github.com/opencv/cvat/pull/1627>)
684 685
- Update https install manual. Makes it easier and more robust.
  Includes automatic renewing of lets encrypt certificates.
V
Vitaliy Nishukov 已提交
686 687 688
- Settings page move to the modal. (<https://github.com/opencv/cvat/pull/1705>)
- Implemented import and export of annotations with relative image paths (<https://github.com/opencv/cvat/pull/1463>)
- Using only single click to start editing or remove a point (<https://github.com/opencv/cvat/pull/1571>)
689 690
- Added support for attributes in VOC XML format (<https://github.com/opencv/cvat/pull/1792>)
- Added annotation attributes in COCO format (<https://github.com/opencv/cvat/pull/1782>)
V
Vitaliy Nishukov 已提交
691
- Colorized object items in the side panel (<https://github.com/opencv/cvat/pull/1753>)
692
- \[Datumaro] Annotation-less files are not generated anymore in COCO format, unless tasks explicitly requested (<https://github.com/opencv/cvat/pull/1799>)
693 694

### Fixed
695

V
Vitaliy Nishukov 已提交
696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
- Problem with exported frame stepped image task (<https://github.com/opencv/cvat/issues/1613>)
- Fixed dataset filter item representation for imageless dataset items (<https://github.com/opencv/cvat/pull/1593>)
- Fixed interpreter crash when trying to import `tensorflow` with no AVX instructions available (<https://github.com/opencv/cvat/pull/1567>)
- Kibana wrong working time calculation with new annotation UI use (<https://github.com/opencv/cvat/pull/1654>)
- Wrong rexex for account name validation (<https://github.com/opencv/cvat/pull/1667>)
- Wrong description on register view for the username field (<https://github.com/opencv/cvat/pull/1667>)
- Wrong resolution for resizing a shape (<https://github.com/opencv/cvat/pull/1667>)
- React warning because of not unique keys in labels viewer (<https://github.com/opencv/cvat/pull/1727>)
- Fixed issue tracker (<https://github.com/opencv/cvat/pull/1705>)
- Fixed canvas fit after sidebar open/close event (<https://github.com/opencv/cvat/pull/1705>)
- A couple of exceptions in AAM related with early object activation (<https://github.com/opencv/cvat/pull/1755>)
- Propagation from the latest frame (<https://github.com/opencv/cvat/pull/1800>)
- Number attribute value validation (didn't work well with floats) (<https://github.com/opencv/cvat/pull/1800>)
- Logout doesn't work (<https://github.com/opencv/cvat/pull/1812>)
- Annotations aren't updated after reopening a task (<https://github.com/opencv/cvat/pull/1753>)
- Labels aren't updated after reopening a task (<https://github.com/opencv/cvat/pull/1753>)
- Canvas isn't fitted after collapsing side panel in attribute annotation mode (<https://github.com/opencv/cvat/pull/1753>)
- Error when interpolating polygons (<https://github.com/opencv/cvat/pull/1878>)
714 715

### Security
716

V
Vitaliy Nishukov 已提交
717
- SQL injection in Django `CVE-2020-9402` (<https://github.com/opencv/cvat/pull/1657>)
718

719
## \[1.0.0] - 2020-05-29
720

721
### Added
722

V
Vitaliy Nishukov 已提交
723 724 725 726 727 728
- cvat-ui: cookie policy drawer for login page (<https://github.com/opencv/cvat/pull/1511>)
- `datumaro_project` export format (<https://github.com/opencv/cvat/pull/1352>)
- Ability to configure user agreements for the user registration form (<https://github.com/opencv/cvat/pull/1464>)
- Cuboid interpolation and cuboid drawing from rectangles (<https://github.com/opencv/cvat/pull/1560>)
- Ability to configure custom pageViewHit, which can be useful for web analytics integration (<https://github.com/opencv/cvat/pull/1566>)
- Ability to configure access to the analytics page based on roles (<https://github.com/opencv/cvat/pull/1592>)
729 730

### Changed
731

V
Vitaliy Nishukov 已提交
732 733
- Downloaded file name in annotations export became more informative (<https://github.com/opencv/cvat/pull/1352>)
- Added auto trimming for trailing whitespaces style enforcement (<https://github.com/opencv/cvat/pull/1352>)
734 735
- REST API: updated `GET /task/<id>/annotations`: parameters are `format`, `filename`
  (now optional), `action` (optional) (<https://github.com/opencv/cvat/pull/1352>)
V
Vitaliy Nishukov 已提交
736 737 738 739 740 741 742 743
- REST API: removed `dataset/formats`, changed format of `annotation/formats` (<https://github.com/opencv/cvat/pull/1352>)
- Exported annotations are stored for N hours instead of indefinitely (<https://github.com/opencv/cvat/pull/1352>)
- Formats: CVAT format now accepts ZIP and XML (<https://github.com/opencv/cvat/pull/1352>)
- Formats: COCO format now accepts ZIP and JSON (<https://github.com/opencv/cvat/pull/1352>)
- Formats: most of formats renamed, no extension in title (<https://github.com/opencv/cvat/pull/1352>)
- Formats: definitions are changed, are not stored in DB anymore (<https://github.com/opencv/cvat/pull/1352>)
- cvat-core: session.annotations.put() now returns ids of added objects (<https://github.com/opencv/cvat/pull/1493>)
- Images without annotations now also included in dataset/annotations export (<https://github.com/opencv/cvat/issues/525>)
744 745

### Removed
746

V
Vitaliy Nishukov 已提交
747 748
- `annotation` application is replaced with `dataset_manager` (<https://github.com/opencv/cvat/pull/1352>)
- `_DATUMARO_INIT_LOGLEVEL` env. variable is removed in favor of regular `--loglevel` cli parameter (<https://github.com/opencv/cvat/pull/1583>)
749 750

### Fixed
751

V
Vitaliy Nishukov 已提交
752 753 754
- Categories for empty projects with no sources are taken from own dataset (<https://github.com/opencv/cvat/pull/1352>)
- Added directory removal on error during `extract` command (<https://github.com/opencv/cvat/pull/1352>)
- Added debug error message on incorrect XPath (<https://github.com/opencv/cvat/pull/1352>)
755
- Exporting frame stepped task
756
  (<https://github.com/opencv/cvat/issues/1294>, <https://github.com/opencv/cvat/issues/1334>)
V
Vitaliy Nishukov 已提交
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
- Fixed broken command line interface for `cvat` export format in Datumaro (<https://github.com/opencv/cvat/issues/1494>)
- Updated Rest API document, Swagger document serving instruction issue (<https://github.com/opencv/cvat/issues/1495>)
- Fixed cuboid occluded view (<https://github.com/opencv/cvat/pull/1500>)
- Non-informative lock icon (<https://github.com/opencv/cvat/pull/1434>)
- Sidebar in AAM has no hide/show button (<https://github.com/opencv/cvat/pull/1420>)
- Task/Job buttons has no "Open in new tab" option (<https://github.com/opencv/cvat/pull/1419>)
- Delete point context menu option has no shortcut hint (<https://github.com/opencv/cvat/pull/1416>)
- Fixed issue with unnecessary tag activation in cvat-canvas (<https://github.com/opencv/cvat/issues/1540>)
- Fixed an issue with large number of instances in instance mask (<https://github.com/opencv/cvat/issues/1539>)
- Fixed full COCO dataset import error with conflicting labels in keypoints and detection (<https://github.com/opencv/cvat/pull/1548>)
- Fixed COCO keypoints skeleton parsing and saving (<https://github.com/opencv/cvat/issues/1539>)
- `tf.placeholder() is not compatible with eager execution` exception for auto_segmentation (<https://github.com/opencv/cvat/pull/1562>)
- Canvas cannot be moved with move functionality on left mouse key (<https://github.com/opencv/cvat/pull/1573>)
- Deep extreme cut request is sent when draw any shape with Make AI polygon option enabled (<https://github.com/opencv/cvat/pull/1573>)
- Fixed an error when exporting a task with cuboids to any format except CVAT (<https://github.com/opencv/cvat/pull/1577>)
- Synchronization with remote git repo (<https://github.com/opencv/cvat/pull/1582>)
- A problem with mask to polygons conversion when polygons are too small (<https://github.com/opencv/cvat/pull/1581>)
- Unable to upload video with uneven size (<https://github.com/opencv/cvat/pull/1594>)
- Fixed an issue with `z_order` having no effect on segmentations (<https://github.com/opencv/cvat/pull/1589>)
776 777

### Security
778

V
Vitaliy Nishukov 已提交
779
- Permission group whitelist check for analytics view (<https://github.com/opencv/cvat/pull/1608>)
780

781
## \[1.0.0-beta.2] - 2020-04-30
782

783
### Added
784

V
Vitaliy Nishukov 已提交
785 786 787 788
- Re-Identification algorithm to merging bounding boxes automatically to the new UI (<https://github.com/opencv/cvat/pull/1406>)
- Methods `import` and `export` to import/export raw annotations for Job and Task in `cvat-core` (<https://github.com/opencv/cvat/pull/1406>)
- Versioning of client packages (`cvat-core`, `cvat-canvas`, `cvat-ui`). Initial versions are set to 1.0.0 (<https://github.com/opencv/cvat/pull/1448>)
- Cuboids feature was migrated from old UI to new one. (<https://github.com/opencv/cvat/pull/1451>)
789 790

### Removed
791

792
- Annotation conversion utils, currently supported natively via Datumaro framework
793
  (<https://github.com/opencv/cvat/pull/1477>)
794 795

### Fixed
796

797
- Auto annotation, TF annotation and Auto segmentation apps (<https://github.com/opencv/cvat/pull/1409>)
798
- Import works with truncated images now: "OSError:broken data stream" on corrupt images
799
  (<https://github.com/opencv/cvat/pull/1430>)
V
Vitaliy Nishukov 已提交
800 801 802 803 804 805 806
- Hide functionality (H) doesn't work (<https://github.com/opencv/cvat/pull/1445>)
- The highlighted attribute doesn't correspond to the chosen attribute in AAM (<https://github.com/opencv/cvat/pull/1445>)
- Inconvinient image shaking while drawing a polygon (hold Alt key during drawing/editing/grouping to drag an image) (<https://github.com/opencv/cvat/pull/1445>)
- Filter property "shape" doesn't work and extra operator in description (<https://github.com/opencv/cvat/pull/1445>)
- Block of text information doesn't disappear after deactivating for locked shapes (<https://github.com/opencv/cvat/pull/1445>)
- Annotation uploading fails in annotation view (<https://github.com/opencv/cvat/pull/1445>)
- UI freezes after canceling pasting with escape (<https://github.com/opencv/cvat/pull/1445>)
807
- Duplicating keypoints in COCO export (<https://github.com/opencv/cvat/pull/1435>)
V
Vitaliy Nishukov 已提交
808 809
- CVAT new UI: add arrows on a mouse cursor (<https://github.com/opencv/cvat/pull/1391>)
- Delete point bug (in new UI) (<https://github.com/opencv/cvat/pull/1440>)
810 811
- Fix apache startup after PC restart (<https://github.com/opencv/cvat/pull/1467>)
- Open task button doesn't work (<https://github.com/opencv/cvat/pull/1474>)
812

813
## \[1.0.0-beta.1] - 2020-04-15
814

815
### Added
816

V
Vitaliy Nishukov 已提交
817 818 819 820 821
- Special behaviour for attribute value `__undefined__` (invisibility, no shortcuts to be set in AAM)
- Dialog window with some helpful information about using filters
- Ability to display a bitmap in the new UI
- Button to reset colors settings (brightness, saturation, contrast) in the new UI
- Option to display shape text always
822 823
- Dedicated message with clarifications when share is unmounted (<https://github.com/opencv/cvat/pull/1373>)
- Ability to create one tracked point (<https://github.com/opencv/cvat/pull/1383>)
824
- Ability to draw/edit polygons and polylines with automatic bordering feature
825
  (<https://github.com/opencv/cvat/pull/1394>)
V
Vitaliy Nishukov 已提交
826
- Tutorial: instructions for CVAT over HTTPS
827
- Deep extreme cut (semi-automatic segmentation) to the new UI (<https://github.com/opencv/cvat/pull/1398>)
828 829

### Changed
830

V
Vitaliy Nishukov 已提交
831 832 833
- Increase preview size of a task till 256, 256 on the server
- Public ssh-keys are displayed in a dedicated window instead of console when create a task with a repository
- React UI is the primary UI
834

835
### Fixed
836

V
Vitaliy Nishukov 已提交
837 838 839 840 841 842 843 844 845 846
- Cleaned up memory in Auto Annotation to enable long running tasks on videos
- New shape is added when press `esc` when drawing instead of cancellation
- Dextr segmentation doesn't work.
- `FileNotFoundError` during dump after moving format files
- CVAT doesn't append outside shapes when merge polyshapes in old UI
- Layout sometimes shows double scroll bars on create task, dashboard and settings pages
- UI fails after trying to change frame during resizing, dragging, editing
- Hidden points (or outsided) are visible after changing a frame
- Merge is allowed for points, but clicks on points conflict with frame dragging logic
- Removed objects are visible for search
847 848
- Add missed task_id and job_id fields into exception logs for the new UI (<https://github.com/opencv/cvat/pull/1372>)
- UI fails when annotations saving occurs during drag/resize/edit (<https://github.com/opencv/cvat/pull/1383>)
849
- Multiple savings when hold Ctrl+S (a lot of the same copies of events were sent with the same working time)
850 851 852 853 854 855
  (<https://github.com/opencv/cvat/pull/1383>)
- UI doesn't have any reaction when git repos synchronization failed (<https://github.com/opencv/cvat/pull/1383>)
- Bug when annotations cannot be saved after (delete - save - undo - save) (<https://github.com/opencv/cvat/pull/1383>)
- VOC format exports Upper case labels correctly in lower case (<https://github.com/opencv/cvat/pull/1379>)
- Fixed polygon exporting bug in COCO dataset (<https://github.com/opencv/cvat/issues/1387>)
- Task creation from remote files (<https://github.com/opencv/cvat/pull/1392>)
856
- Job cannot be opened in some cases when the previous job was failed during opening
857 858 859 860 861 862
  (<https://github.com/opencv/cvat/issues/1403>)
- Deactivated shape is still highlighted on the canvas (<https://github.com/opencv/cvat/issues/1403>)
- AttributeError: 'tuple' object has no attribute 'read' in ReID algorithm (<https://github.com/opencv/cvat/issues/1403>)
- Wrong semi-automatic segmentation near edges of an image (<https://github.com/opencv/cvat/issues/1403>)
- Git repos paths (<https://github.com/opencv/cvat/pull/1400>)
- Uploading annotations for tasks with multiple jobs (<https://github.com/opencv/cvat/pull/1396>)
863

864
## \[1.0.0-alpha] - 2020-03-31
865

866
### Added
867

868 869 870
- Data streaming using chunks (<https://github.com/opencv/cvat/pull/1007>)
- New UI: showing file names in UI (<https://github.com/opencv/cvat/pull/1311>)
- New UI: delete a point from context menu (<https://github.com/opencv/cvat/pull/1292>)
871

872
### Fixed
873

874 875 876
- Git app cannot clone a repository (<https://github.com/opencv/cvat/pull/1330>)
- New UI: preview position in task details (<https://github.com/opencv/cvat/pull/1312>)
- AWS deployment (<https://github.com/opencv/cvat/pull/1316>)
877

878
## \[0.6.1] - 2020-03-21
879

880
### Changed
881

V
Vitaliy Nishukov 已提交
882 883 884
- VOC task export now does not use official label map by default, but takes one
  from the source task to avoid primary-class and class part name
  clashing ([#1275](https://github.com/opencv/cvat/issues/1275))
885

886
### Fixed
887

V
Vitaliy Nishukov 已提交
888 889 890 891 892
- File names in LabelMe format export are no longer truncated ([#1259](https://github.com/opencv/cvat/issues/1259))
- `occluded` and `z_order` annotation attributes are now correctly passed to Datumaro ([#1271](https://github.com/opencv/cvat/pull/1271))
- Annotation-less tasks now can be exported as empty datasets in COCO ([#1277](https://github.com/opencv/cvat/issues/1277))
- Frame name matching for video annotations import -
  allowed `frame_XXXXXX[.ext]` format ([#1274](https://github.com/opencv/cvat/pull/1274))
893 894

### Security
895

V
Vitaliy Nishukov 已提交
896
- Bump acorn from 6.3.0 to 6.4.1 in /cvat-ui ([#1270](https://github.com/opencv/cvat/pull/1270))
897

898
## \[0.6.0] - 2020-03-15
899

900
### Added
901

V
Vitaliy Nishukov 已提交
902 903 904 905 906 907 908
- Server only support for projects. Extend REST API v1 (/api/v1/projects\*)
- Ability to get basic information about users without admin permissions ([#750](https://github.com/opencv/cvat/issues/750))
- Changed REST API: removed PUT and added DELETE methods for /api/v1/users/ID
- Mask-RCNN Auto Annotation Script in OpenVINO format
- Yolo Auto Annotation Script
- Auto segmentation using Mask_RCNN component (Keras+Tensorflow Mask R-CNN Segmentation)
- REST API to export an annotation task (images + annotations)
909 910
  [Datumaro](https://github.com/opencv/cvat/tree/develop/datumaro) -
  a framework to build, analyze, debug and visualize datasets
V
Vitaliy Nishukov 已提交
911 912 913 914 915 916 917
- Text Detection Auto Annotation Script in OpenVINO format for version 4
- Added in OpenVINO Semantic Segmentation for roads
- Ability to visualize labels when using Auto Annotation runner
- MOT CSV format support ([#830](https://github.com/opencv/cvat/pull/830))
- LabelMe format support ([#844](https://github.com/opencv/cvat/pull/844))
- Segmentation MASK format import (as polygons) ([#1163](https://github.com/opencv/cvat/pull/1163))
- Git repositories can be specified with IPv4 address ([#827](https://github.com/opencv/cvat/pull/827))
918 919

### Changed
920

V
Vitaliy Nishukov 已提交
921 922 923 924 925
- page_size parameter for all REST API methods
- React & Redux & Antd based dashboard
- Yolov3 interpretation script fix and changes to mapping.json
- YOLO format support ([#1151](https://github.com/opencv/cvat/pull/1151))
- Added support for OpenVINO 2020
926 927

### Fixed
928

V
Vitaliy Nishukov 已提交
929 930 931 932 933 934
- Exception in Git plugin [#826](https://github.com/opencv/cvat/issues/826)
- Label ids in TFrecord format now start from 1 [#866](https://github.com/opencv/cvat/issues/866)
- Mask problem in COCO JSON style [#718](https://github.com/opencv/cvat/issues/718)
- Datasets (or tasks) can be joined and split to subsets with Datumaro [#791](https://github.com/opencv/cvat/issues/791)
- Output labels for VOC format can be specified with Datumaro [#942](https://github.com/opencv/cvat/issues/942)
- Annotations can be filtered before dumping with Datumaro [#994](https://github.com/opencv/cvat/issues/994)
935

936
## \[0.5.2] - 2019-12-15
937

938
### Fixed
939

V
Vitaliy Nishukov 已提交
940
- Frozen version of scikit-image==0.15 in requirements.txt because next releases don't support Python 3.5
941

942
## \[0.5.1] - 2019-10-17
943

N
Nikita Manovich 已提交
944
### Added
945

V
Vitaliy Nishukov 已提交
946
- Integration with Zenodo.org (DOI)
N
Nikita Manovich 已提交
947

948
## \[0.5.0] - 2019-09-12
949

950
### Added
951

V
Vitaliy Nishukov 已提交
952 953 954 955 956 957 958 959 960 961 962 963 964 965
- A converter to YOLO format
- Installation guide
- Linear interpolation for a single point
- Video frame filter
- Running functional tests for REST API during a build
- Admins are no longer limited to a subset of python commands in the auto annotation application
- Remote data source (list of URLs to create an annotation task)
- Auto annotation using Faster R-CNN with Inception v2 (utils/open_model_zoo)
- Auto annotation using Pixel Link mobilenet v2 - text detection (utils/open_model_zoo)
- Ability to create a custom extractors for unsupported media types
- Added in PDF extractor
- Added in a command line model manager tester
- Ability to dump/load annotations in several formats from UI (CVAT, Pascal VOC, YOLO, MS COCO, png mask, TFRecord)
- Auth for REST API (api/v1/auth/): login, logout, register, ...
966
- Preview for the new CVAT UI (dashboard only) is available: <http://localhost:9080/>
V
Vitaliy Nishukov 已提交
967
- Added command line tool for performing common task operations (/utils/cli/)
968 969

### Changed
970

V
Vitaliy Nishukov 已提交
971 972
- Outside and keyframe buttons in the side panel for all interpolation shapes (they were only for boxes before)
- Improved error messages on the client side (#511)
973 974

### Removed
975

V
Vitaliy Nishukov 已提交
976
- "Flip images" has been removed. UI now contains rotation features.
977 978

### Fixed
979

V
Vitaliy Nishukov 已提交
980 981 982 983 984 985 986 987 988 989 990 991 992 993 994
- Incorrect width of shapes borders in some cases
- Annotation parser for tracks with a start frame less than the first segment frame
- Interpolation on the server near outside frames
- Dump for case when task name has a slash
- Auto annotation fail for multijob tasks
- Installation of CVAT with OpenVINO on the Windows platform
- Background color was always black in utils/mask/converter.py
- Exception in attribute annotation mode when a label are switched to a value without any attributes
- Handling of wrong labelamp json file in auto annotation (<https://github.com/opencv/cvat/issues/554>)
- No default attributes in dumped annotation (<https://github.com/opencv/cvat/issues/601>)
- Required field "Frame Filter" on admin page during a task modifying (#666)
- Dump annotation errors for a task with several segments (#610, #500)
- Invalid label parsing during a task creating (#628)
- Button "Open Task" in the annotation view
- Creating a video task with 0 overlap
995 996

### Security
997

V
Vitaliy Nishukov 已提交
998
- Upgraded Django, djangorestframework, and other packages
999

1000
## \[0.4.2] - 2019-06-03
1001

1002
### Fixed
1003

V
Vitaliy Nishukov 已提交
1004
- Fixed interaction with the server share in the auto annotation plugin
1005

1006
## \[0.4.1] - 2019-05-14
1007

1008
### Fixed
1009

V
Vitaliy Nishukov 已提交
1010
- JavaScript syntax incompatibility with Google Chrome versions less than 72
1011

1012
## \[0.4.0] - 2019-05-04
1013

1014
### Added
1015

V
Vitaliy Nishukov 已提交
1016 1017 1018
- OpenVINO auto annotation: it is possible to upload a custom model and annotate images automatically.
- Ability to rotate images/video in the client part (Ctrl+R, Shift+Ctrl+R shortcuts) (#305)
- The ReID application for automatic bounding box merging has been added (#299)
1019
- Keyboard shortcuts to switch next/previous default shape type (box, polygon etc) (Alt + <, Alt + >) (#316)
V
Vitaliy Nishukov 已提交
1020 1021 1022
- Converter for VOC now supports interpolation tracks
- REST API (/api/v1/\*, /api/docs)
- Semi-automatic semantic segmentation with the [Deep Extreme Cut](http://www.vision.ee.ethz.ch/~cvlsegmentation/dextr/) work
1023 1024

### Changed
1025

V
Vitaliy Nishukov 已提交
1026 1027 1028
- Propagation setup has been moved from settings to bottom player panel
- Additional events like "Debug Info" or "Fit Image" have been added for analitics
- Optional using LFS for git annotation storages (#314)
1029 1030

### Deprecated
1031

1032 1033
- "Flip images" flag in the create task dialog will be removed.
  Rotation functionality in client part have been added instead.
1034 1035

### Fixed
1036

1037
- Django 2.1.5 (security fix, [CVE-2019-3498](https://nvd.nist.gov/vuln/detail/CVE-2019-3498))
V
Vitaliy Nishukov 已提交
1038
- Several scenarious which cause code 400 after undo/redo/save have been fixed (#315)
1039

1040
## \[0.3.0] - 2018-12-29
1041

1042
### Added
1043

V
Vitaliy Nishukov 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
- Ability to copy Object URL and Frame URL via object context menu and player context menu respectively.
- Ability to change opacity for selected shape with help "Selected Fill Opacity" slider.
- Ability to remove polyshapes points by double click.
- Ability to draw/change polyshapes (except for points) by slip method. Just press ENTER and moving a cursor.
- Ability to switch lock/hide properties via label UI element (in right menu) for all objects with same label.
- Shortcuts for outside/keyframe properties
- Support of Intel OpenVINO for accelerated model inference
- Tensorflow annotation now works without CUDA. It can use CPU only. OpenVINO and CUDA are supported optionally.
- Incremental saving of annotations.
- Tutorial for using polygons (screencast)
- Silk profiler to improve development process
- Admin panel can be used to edit labels and attributes for annotation tasks
- Analytics component to manage a data annotation team, monitor exceptions, collect client and server logs
1057 1058
- Changeable job and task statuses (annotation, validation, completed).
  A job status can be changed manually, a task status is computed automatically based on job statuses (#153)
V
Vitaliy Nishukov 已提交
1059 1060
- Backlink to a task from its job annotation view (#156)
- Buttons lock/hide for labels. They work for all objects with the same label on a current frame (#116)
1061 1062

### Changed
1063

V
Vitaliy Nishukov 已提交
1064 1065 1066
- Polyshape editing method has been improved. You can redraw part of shape instead of points cloning.
- Unified shortcut (Esc) for close any mode instead of different shortcuts (Alt+N, Alt+G, Alt+M etc.).
- Dump file contains information about data source (e.g. video name, archive name, ...)
1067
- Update requests library due to [CVE-2018-18074](https://nvd.nist.gov/vuln/detail/CVE-2018-18074)
V
Vitaliy Nishukov 已提交
1068 1069 1070
- Per task/job permissions to create/access/change/delete tasks and annotations
- Documentation was improved
- Timeout for creating tasks was increased (from 1h to 4h) (#136)
1071 1072
- Drawing has become more convenience. Now it is possible to draw outside an image.
  Shapes will be automatically truncated after drawing process (#202)
1073

1074
### Fixed
1075

V
Vitaliy Nishukov 已提交
1076 1077 1078 1079 1080 1081 1082 1083 1084
- Performance bottleneck has been fixed during you create new objects (draw, copy, merge etc).
- Label UI elements aren't updated after changelabel.
- Attribute annotation mode can use invalid shape position after resize or move shapes.
- Labels order is preserved now (#242)
- Uploading large XML files (#123)
- Django vulnerability (#121)
- Grammatical cleanup of README.md (#107)
- Dashboard loading has been accelerated (#156)
- Text drawing outside of a frame in some cases (#202)
1085

1086
## \[0.2.0] - 2018-09-28
1087

1088
### Added
1089

V
Vitaliy Nishukov 已提交
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
- New annotation shapes: polygons, polylines, points
- Undo/redo feature
- Grid to estimate size of objects
- Context menu for shapes
- A converter to PASCAL VOC format
- A converter to MS COCO format
- A converter to mask format
- License header for most of all files
- .gitattribute to avoid problems with bash scripts inside a container
- CHANGELOG.md itself
- Drawing size of a bounding box during resize
- Color by instance, group, label
- Group objects
- Object propagation on next frames
- Full screen view
1105 1106

### Changed
1107

V
Vitaliy Nishukov 已提交
1108 1109
- Documentation, screencasts, the primary screenshot
- Content-type for save_job request is application/json
1110 1111

### Fixed
1112

V
Vitaliy Nishukov 已提交
1113 1114 1115 1116
- Player navigation if the browser's window is scrolled
- Filter doesn't support dash (-)
- Several memory leaks
- Inconsistent extensions between filenames in an annotation file and real filenames
1117

1118
## \[0.1.2] - 2018-08-07
1119

1120
### Added
1121

V
Vitaliy Nishukov 已提交
1122 1123
- 7z archive support when creating a task
- .vscode/launch.json file for developing with VS code
1124 1125

### Fixed
1126

V
Vitaliy Nishukov 已提交
1127 1128 1129 1130
- #14: docker-compose down command as written in the readme does not remove volumes
- #15: all checkboxes in temporary attributes are checked when reopening job after saving the job
- #18: extend CONTRIBUTING.md
- #19: using the same attribute for label twice -> stuck
1131 1132

### Changed
1133

V
Vitaliy Nishukov 已提交
1134
- More strict verification for labels with attributes
1135

1136
## \[0.1.1] - 2018-07-6
1137

1138
### Added
1139

V
Vitaliy Nishukov 已提交
1140 1141
- Links on a screenshot, documentation, screencasts into README.md
- CONTRIBUTORS.md
1142 1143

### Fixed
1144

V
Vitaliy Nishukov 已提交
1145
- GitHub documentation
1146

1147
## \[0.1.0] - 2018-06-29
1148

1149
### Added
1150

V
Vitaliy Nishukov 已提交
1151
- Initial version
1152 1153

## Template
1154

1155
```
1156
## \[Unreleased]
1157
### Added
1158
- TDB
1159 1160

### Changed
1161
- TDB
1162 1163

### Deprecated
1164
- TDB
1165 1166

### Removed
1167
- TDB
1168 1169

### Fixed
1170
- TDB
1171 1172

### Security
1173
- TDB
1174
```