jpeg: use libjpeg-turbo built-in color conversions#24875
Merged
asmorkalov merged 1 commit intoopencv:4.xfrom Jan 23, 2024
Merged
jpeg: use libjpeg-turbo built-in color conversions#24875asmorkalov merged 1 commit intoopencv:4.xfrom
asmorkalov merged 1 commit intoopencv:4.xfrom
Conversation
Contributor
|
Performance results for Intel i5-1135G7 (mobile), system instance of libjpeg (Ubuntu 20.04): |
Contributor
|
Jetson TK1 (ARM v7), CPU_BASELINE="", no NEON. libjpeg - system instance of libjpeg (Ubuntu 16.04). |
Contributor
|
The same Intel system with self-built libjpeg from 3rdparty with NASM installed: |
Contributor
|
The same Intel system with self-built libjpeg from 3rdparty without NASM: |
Contributor
|
Jetson-tk1 result with self-built libjpeg with NASM: |
asmorkalov
approved these changes
Jan 23, 2024
Contributor
asmorkalov
left a comment
There was a problem hiding this comment.
👍 Thanks for the great job! The patch makes sense, even if NASM assembler is not found.
Merged
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
libjpeg-turbo has optimized built-in support for encoding/decoding from/to BGR and BGRA [1].
This PR integrates this optimized support when available. As a result both encoding and decoding from/to BGR are faster by ~2% and the same for BGRA is faster by ~3%, measured on a Mac M1 (ARM64) with a 512x512 image. Grayscale performance is unchanged.
Test code
Pull Request Readiness Checklist
See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request
Patch to opencv_extra has the same branch name.