-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v2.7.6 #7005
Release v2.7.6 #7005
Commits on Oct 9, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e0ea6d2 - Browse repository at this point
Copy the full SHA e0ea6d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3255b09 - Browse repository at this point
Copy the full SHA 3255b09View commit details
Commits on Oct 10, 2023
-
Persist image filters across jobs (#6953)
<!-- Raise an issue to propose your change (https://github.com/opencv/cvat/issues). It helps to avoid duplication of efforts from multiple independent contributors. Discuss your ideas with maintainers to be sure that changes will be approved and merged. Read the [Contribution guide](https://opencv.github.io/cvat/docs/contributing/). --> <!-- Provide a general summary of your changes in the Title above --> ### Motivation and context <!-- Why is this change required? What problem does it solve? If it fixes an open issue, please link to the issue here. Describe your changes in detail, add screenshots. --> ### How has this been tested? <!-- Please describe in detail how you tested your changes. Include details of your testing environment, and the tests you ran to see how your change affects other areas of the code, etc. --> ### Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply. If an item isn't applicable for some reason, then ~~explicitly strikethrough~~ the whole line. If you don't do that, GitHub will show incorrect progress for the pull request. If you're unsure about any of these, don't hesitate to ask. We're here to help! --> - [ ] I submit my changes into the `develop` branch - [ ] I have created a changelog fragment <!-- see top comment in CHANGELOG.md --> - [ ] I have updated the documentation accordingly - [ ] I have added tests to cover my changes - [ ] I have linked related issues (see [GitHub docs]( https://help.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword)) - [ ] I have increased versions of npm packages if it is necessary ([cvat-canvas](https://github.com/opencv/cvat/tree/develop/cvat-canvas#versioning), [cvat-core](https://github.com/opencv/cvat/tree/develop/cvat-core#versioning), [cvat-data](https://github.com/opencv/cvat/tree/develop/cvat-data#versioning) and [cvat-ui](https://github.com/opencv/cvat/tree/develop/cvat-ui#versioning)) ### License - [ ] I submit _my code changes_ under the same [MIT License]( https://github.com/opencv/cvat/blob/develop/LICENSE) that covers the project. Feel free to contact the maintainers if that's a concern.
Configuration menu - View commit details
-
Copy full SHA for 6ce88d3 - Browse repository at this point
Copy the full SHA 6ce88d3View commit details -
Update README for REST API tests (#6971)
Kirill Sizov authoredOct 10, 2023 Configuration menu - View commit details
-
Copy full SHA for fceeeeb - Browse repository at this point
Copy the full SHA fceeeebView commit details -
[Snyk] Security upgrade opencv-python-headless from 4.5.5.62 to 4.8.1…
….78 (#6931) Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: Roman Donchenko <roman@cvat.ai>
Configuration menu - View commit details
-
Copy full SHA for ae9cc2e - Browse repository at this point
Copy the full SHA ae9cc2eView commit details
Commits on Oct 11, 2023
-
Add a GitHub workflow to prepare a release pull request (#6972)
This automates the first half of the current release process. The second half will be implemented by another workflow. The reason why it can't all be done in a single workflow is that it's useful to let developers inspect what'll go into the release before actually publishing it, and to apply any last-minute fixes, if necessary. It also allows CI to complete for the release PR. To support the new workflow, add a `--set` option to `update_version.py` that sets the version to a custom value.
Configuration menu - View commit details
-
Copy full SHA for 43181a0 - Browse repository at this point
Copy the full SHA 43181a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 176bac2 - Browse repository at this point
Copy the full SHA 176bac2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5219c8f - Browse repository at this point
Copy the full SHA 5219c8fView commit details -
Fixed Siammask tracker error on grayscale images (#6982)
```python "Exception caught in handler - \"not enough values to unpack (expected 3, got 2)\": Traceback (most recent call last): File \"/opt/nuclio/_nuclio_wrapper.py\", line 143, in serve_requests await self._handle_event(event) File \"/opt/nuclio/_nuclio_wrapper.py\", line 397, in _handle_event entrypoint_output = self._entrypoint(self._context, event) File \"/opt/nuclio/main.py\", line 29, in handler shape, state = context.user_data.model.infer(image, shape, states[i] if i < len(states) else None) File \"/opt/nuclio/model_handler.py\", line 56, in infer self.config['hp'], device=self.device) File \"/opt/nuclio/SiamMask/tools/test.py\", line 152, in siamese_init z_crop = get_subwindow_tracking(im, target_pos, p.exemplar_size, s_z, avg_chans) File \"/opt/nuclio/SiamMask/tools/test.py\", line 88, in get_subwindow_tracking r, c, k = im.shape ValueError: not enough values to unpack (expected 3, got 2) ```
Configuration menu - View commit details
-
Copy full SHA for 80daa10 - Browse repository at this point
Copy the full SHA 80daa10View commit details -
Override EditorConfig settings for YAML files (#6980)
I realized that I was fighting my editor, because we indent YAML files with 2 spaces, but `.editorconfig` specifies 4 spaces for all files. Align the config with reality.
Configuration menu - View commit details
-
Copy full SHA for cf4329a - Browse repository at this point
Copy the full SHA cf4329aView commit details -
Fix tracks splitting for tracks that have sub-tracks (#6968)
When uploading annotations for the whole task that has few jobs our server splits tracks. Each track we divide into a few tracks in that way that each track corresponds to only one job and all shapes of the track do not extend beyond the frame range corresponding to that job. It mainly works, but we have a problem with skeleton tracks. Due to this problem we if upload skeleton tracks for the whole task all our tracks will be duplicated for each job but not split, it means that we will have tracks that extend beyond the frame range of jobs and it leads to bad side effects, in this case, our exported annotations from such task could be incorrect or we won't be able to export annotations at all. And the reason for this problem is this small bug, which this PR fixes. Our code really slices sub-tracks for the skeleton track, but after this slicing server doesn't save the result.
Kirill Sizov authoredOct 11, 2023 Configuration menu - View commit details
-
Copy full SHA for b450b44 - Browse repository at this point
Copy the full SHA b450b44View commit details
Commits on Oct 12, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 17bef4f - Browse repository at this point
Copy the full SHA 17bef4fView commit details -
Configuration menu - View commit details
-
Copy full SHA for a2d1c5f - Browse repository at this point
Copy the full SHA a2d1c5fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 97a079e - Browse repository at this point
Copy the full SHA 97a079eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 41a6296 - Browse repository at this point
Copy the full SHA 41a6296View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5545e83 - Browse repository at this point
Copy the full SHA 5545e83View commit details -
Configuration menu - View commit details
-
Copy full SHA for d85e3a2 - Browse repository at this point
Copy the full SHA d85e3a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 848e373 - Browse repository at this point
Copy the full SHA 848e373View commit details -
Configuration menu - View commit details
-
Copy full SHA for 93a4f05 - Browse repository at this point
Copy the full SHA 93a4f05View commit details -
Allow to upload tracks from COCO formats (#6969)
This PR resolves the following problems: 1. During import we ignore track_id attribute for annotations if these annotations do not come from one of these formats `('cvat', 'datumaro', 'sly_pointcloud')` this prevents to import tracks in coco format -> this PR extends the list of "track formats" 2. When we convert a dataset from CVAT representation to Datumaro Dataset in all possible situations only the first shape of the skeleton track is a keyframe, all other shapes will be as marked as not keyframes it leads to problems when we try to import such tracks that were exported from CVAT -> this PR adds the following line of code: set `keyframe = True` for skeletons if at least one point of this skeleton is keyframe 3. During import skeleton tracks our code always expects to see a "keyframe" attribute for the skeleton's element, but not all formats support attributes for skeleton points (for example COCO Keypoints doesn't allow to have attributes for each skeleton's point). And if the server doesn't see this attribute for some element we ignore this element -> this PR adds the following logic for skeleton track: if skeleton's elements don't have a keyframe attribute at all then consider such skeleton elements as keyframes = True
Kirill Sizov authoredOct 12, 2023 Configuration menu - View commit details
-
Copy full SHA for 2802442 - Browse repository at this point
Copy the full SHA 2802442View commit details -
Set autorestart=true for all workers (#6945)
Helm: set memory request for keydb SUpervisord configs: - Added `autorestart=true` option for all workers - Unified program names to use dashes as delimiter instead of mixed '_' and '-' - Minor improvements to supervisor configurations
Configuration menu - View commit details
-
Copy full SHA for 1b77005 - Browse repository at this point
Copy the full SHA 1b77005View commit details
Commits on Oct 13, 2023
-
Fix getting CS content when S3 bucket contains created manually direc…
…tories (#6997) <!-- Raise an issue to propose your change (https://github.com/opencv/cvat/issues). It helps to avoid duplication of efforts from multiple independent contributors. Discuss your ideas with maintainers to be sure that changes will be approved and merged. Read the [Contribution guide](https://opencv.github.io/cvat/docs/contributing/). --> <!-- Provide a general summary of your changes in the Title above --> ### Motivation and context <!-- Why is this change required? What problem does it solve? If it fixes an open issue, please link to the issue here. Describe your changes in detail, add screenshots. --> This PR fixes retrieving cloud storage content for an AWS S3 bucket containing manually created "directories" (AWS ListObjectsV2 API returns such objects within the content). ![image](https://github.com/opencv/cvat/assets/49038720/af956beb-9a88-4391-aa17-2a9a0629e16c) A similar problem can be found [here](https://stackoverflow.com/questions/75620230/aws-s3-listobjectsv2-returns-folder-as-an-object). In this case, I prefer to simply filter keys from keys with a trailing slash, rather than filter from objects with 0 size. ### How has this been tested? Manually ### Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply. If an item isn't applicable for some reason, then ~~explicitly strikethrough~~ the whole line. If you don't do that, GitHub will show incorrect progress for the pull request. If you're unsure about any of these, don't hesitate to ask. We're here to help! --> - [x] I submit my changes into the `develop` branch - [x] I have created a changelog fragment <!-- see top comment in CHANGELOG.md --> ~~- [ ] I have updated the documentation accordingly~~ ~~- [ ] I have added tests to cover my changes~~ ~~- [ ] I have linked related issues (see [GitHub docs]( https://help.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword))~~ ~~- [ ] I have increased versions of npm packages if it is necessary ([cvat-canvas](https://github.com/opencv/cvat/tree/develop/cvat-canvas#versioning), [cvat-core](https://github.com/opencv/cvat/tree/develop/cvat-core#versioning), [cvat-data](https://github.com/opencv/cvat/tree/develop/cvat-data#versioning) and [cvat-ui](https://github.com/opencv/cvat/tree/develop/cvat-ui#versioning))~~ ### License - [x] I submit _my code changes_ under the same [MIT License]( https://github.com/opencv/cvat/blob/develop/LICENSE) that covers the project. Feel free to contact the maintainers if that's a concern.
Configuration menu - View commit details
-
Copy full SHA for f938ff3 - Browse repository at this point
Copy the full SHA f938ff3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 80e20ff - Browse repository at this point
Copy the full SHA 80e20ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d9af86 - Browse repository at this point
Copy the full SHA 4d9af86View commit details -
Configuration menu - View commit details
-
Copy full SHA for f616d6a - Browse repository at this point
Copy the full SHA f616d6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6eead0d - Browse repository at this point
Copy the full SHA 6eead0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c05e84 - Browse repository at this point
Copy the full SHA 3c05e84View commit details