Skip to content
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

Image quality parameter mismatch #1900 #1904

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Hidden points and cuboids can be selected to be groupped (<https://github.com/opencv/cvat/pull/1874>)
- `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>)

### Security
-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class AdvancedConfigurationForm extends React.PureComponent<Props> {

return (
<Form.Item label={<span>Image quality</span>}>
<Tooltip title='Defines image compression level'>
<Tooltip title='Defines image quality level'>
{form.getFieldDecorator('imageQuality', {
initialValue: 70,
rules: [{
Expand Down
2 changes: 1 addition & 1 deletion cvat/apps/documentation/user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Go to the [Django administration panel](http://localhost:8080/admin). There you

**Image Quality**. Use this option to specify quality of uploaded images.
The option helps to load high resolution datasets faster.
Use the value from ``1`` (completely compressed images) to ``95`` (almost not compressed images).
Use the value from ``5`` (almost completely compressed images) to ``100`` (not compressed images).

**Overlap Size**. Use this option to make overlapped segments.
The option makes tracks continuous from one segment into another.
Expand Down