GAPI: Replace resize perf test to imgproc#21475
Merged
alalek merged 3 commits intoopencv:4.xfrom Jan 27, 2022
Merged
Conversation
12ef190 to
427cf30
Compare
added 2 commits
January 21, 2022 17:58
dmatveev
approved these changes
Jan 27, 2022
Comment on lines
-2081
to
+2082
| outSz_w = static_cast<int>(round(in.size.width * fx)); | ||
| outSz_h = static_cast<int>(round(in.size.height * fy)); | ||
| outSz_w = saturate_cast<int>(in.size.width * fx); | ||
| outSz_h = saturate_cast<int>(in.size.height * fy); |
Contributor
There was a problem hiding this comment.
Does this change anything? Do tests pass now?
Member
Author
There was a problem hiding this comment.
That change put the rounding of output size in accordance with it in G_TYPED_KERNEL GResize. It has no affect on tests
Merged
a-sajjad72
pushed a commit
to a-sajjad72/opencv
that referenced
this pull request
Mar 30, 2023
GAPI: Replace resize perf test to imgproc * resize + test configs * fluid kernel "add" * Add fluid core
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.
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.