Skip to content

Animated WebP and AVIF Support#25608

Merged
asmorkalov merged 21 commits intoopencv:4.xfrom
sturkmen72:animated_webp_support
Dec 20, 2024
Merged

Animated WebP and AVIF Support#25608
asmorkalov merged 21 commits intoopencv:4.xfrom
sturkmen72:animated_webp_support

Conversation

@sturkmen72
Copy link
Copy Markdown
Contributor

@sturkmen72 sturkmen72 commented May 19, 2024

related issues #24855 #22569

Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

  • I agree to contribute to the project under Apache 2 License.
  • To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
  • The PR is proposed to the proper branch
  • There is a reference to the original bug report and related work
  • There is accuracy test, performance test and test data in opencv_extra repository, if applicable
    Patch to opencv_extra has the same branch name.
  • The feature is well documented and sample code can be built with the project CMake

@sturkmen72 sturkmen72 force-pushed the animated_webp_support branch 8 times, most recently from ab52727 to 987a7d0 Compare May 25, 2024 10:17
@sturkmen72
Copy link
Copy Markdown
Contributor Author

hi @asmorkalov. PR is in progress and not ready to review but could you start ci tests please.

@sturkmen72 sturkmen72 force-pushed the animated_webp_support branch 3 times, most recently from 8c3f543 to e6d19b0 Compare June 2, 2024 21:37
@asmorkalov asmorkalov added this to the 4.11.0 milestone Jun 3, 2024
@asmorkalov asmorkalov requested a review from vrabaud June 3, 2024 09:49
@asmorkalov
Copy link
Copy Markdown
Contributor

@vrabaud could you take a look?

@sturkmen72

This comment was marked as outdated.

@sturkmen72 sturkmen72 force-pushed the animated_webp_support branch 2 times, most recently from 995ede7 to 51a034f Compare June 4, 2024 20:40
@sturkmen72 sturkmen72 force-pushed the animated_webp_support branch from 51a034f to 6797c83 Compare June 5, 2024 15:41
@sturkmen72 sturkmen72 force-pushed the animated_webp_support branch 2 times, most recently from a975c55 to eb19daa Compare June 9, 2024 07:40
@asmorkalov
Copy link
Copy Markdown
Contributor

@vrabaud I want to merge the PR. Could you take a look on it?

@asmorkalov asmorkalov self-assigned this Dec 19, 2024
Copy link
Copy Markdown
Contributor

@vrabaud vrabaud left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok, LGTM now. The public API is great and well documented. If there are issues, they will all be internal and easy to fix without breaking the API.

Please fix the AVIF issue I mention though.

@sturkmen72 sturkmen72 force-pushed the animated_webp_support branch 2 times, most recently from 9a9de88 to a0a76bb Compare December 19, 2024 20:41
@sturkmen72 sturkmen72 force-pushed the animated_webp_support branch from a0a76bb to 2972504 Compare December 19, 2024 21:55
@sturkmen72
Copy link
Copy Markdown
Contributor Author

@asmorkalov @vrabaud i solved the issue about avif and made some improvements on the documentation. I believe the PR is ready to merge. thank you for your great support.

@asmorkalov asmorkalov merged commit d9a139f into opencv:4.x Dec 20, 2024
@sturkmen72 sturkmen72 deleted the animated_webp_support branch December 20, 2024 10:13
RoshniUG pushed a commit to RoshniUG/opencv that referenced this pull request Dec 24, 2024
V4l default image size opencv#25500

Added ability to set default image width and height for V4L capture.  This is required for cameras that does not support 640x480 resolution because otherwise V4L capture cannot be opened and failed with "Pixel format of incoming image is unsupported by OpenCV" and then with "can't open camera by index" message. Because of the videoio architecture it is not possible to insert actions between CvCaptureCAM_V4L::CvCaptureCAM_V4L and CvCaptureCAM_V4L::open so the only way I found is to use environment variables to preselect the resolution.

Related bug report is [opencv#25499](opencv#25499)
Maybe (but not confirmed) this is also related to [opencv#24551](opencv#24551)

This fix was made and verified in my local environment: capture board AVMATRIX VC42, Ubuntu 20, NVidia Jetson Orin.

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [X] I agree to contribute to the project under Apache 2 License.
- [X] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [X] The PR is proposed to the proper branch
- [X] There is a reference to the original bug report and related work
- [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [ ] The feature is well documented and sample code can be built with the project CMake

Merge pull request opencv#25608 from sturkmen72:animated_webp_support

Animated WebP Support opencv#25608

related issues opencv#24855 opencv#22569

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x] The PR is proposed to the proper branch
- [x] There is a reference to the original bug report and related work
- [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [ ] The feature is well documented and sample code can be built with the project CMake
@asmorkalov asmorkalov changed the title Animated WebP Support Animated WebP and AVIF Support Dec 30, 2024
@asmorkalov asmorkalov mentioned this pull request Dec 30, 2024
6 tasks
asmorkalov pushed a commit that referenced this pull request Dec 30, 2024
Animated PNG Support #25715

Continues #25608

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x] The PR is proposed to the proper branch
- [x] There is a reference to the original bug report and related work
- [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [x] The feature is well documented and sample code can be built with the project CMake
@asmorkalov asmorkalov mentioned this pull request Jan 15, 2025
shyama7004 pushed a commit to shyama7004/opencv that referenced this pull request Jan 20, 2025
Animated WebP Support opencv#25608

related issues opencv#24855 opencv#22569 

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x] The PR is proposed to the proper branch
- [x] There is a reference to the original bug report and related work
- [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [ ] The feature is well documented and sample code can be built with the project CMake
shyama7004 pushed a commit to shyama7004/opencv that referenced this pull request Jan 20, 2025
Animated PNG Support opencv#25715

Continues opencv#25608

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x] The PR is proposed to the proper branch
- [x] There is a reference to the original bug report and related work
- [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [x] The feature is well documented and sample code can be built with the project CMake
NanQin555 pushed a commit to NanQin555/opencv that referenced this pull request Feb 24, 2025
Animated WebP Support opencv#25608

related issues opencv#24855 opencv#22569 

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x] The PR is proposed to the proper branch
- [x] There is a reference to the original bug report and related work
- [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [ ] The feature is well documented and sample code can be built with the project CMake
NanQin555 pushed a commit to NanQin555/opencv that referenced this pull request Feb 24, 2025
Animated PNG Support opencv#25715

Continues opencv#25608

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x] The PR is proposed to the proper branch
- [x] There is a reference to the original bug report and related work
- [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [x] The feature is well documented and sample code can be built with the project CMake
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants