Skip to content

imgproc: sigma2=sigma1 in top-level function of GaussianBlur#22717

Merged
opencv-pushbot merged 1 commit intoopencv:3.4from
alalek:issue_22716
Oct 31, 2022
Merged

imgproc: sigma2=sigma1 in top-level function of GaussianBlur#22717
opencv-pushbot merged 1 commit intoopencv:3.4from
alalek:issue_22716

Conversation

@alalek
Copy link
Copy Markdown
Member

@alalek alalek commented Oct 28, 2022

fixes #22716

@elpalmer
Copy link
Copy Markdown

@alalek Will you also fix case where both sigmaX and sigmayY are zero?

@alalek
Copy link
Copy Markdown
Member Author

alalek commented Oct 28, 2022

both sigmaX and sigmayY are zero

Currently no. There is dedicated check in ipp_GaussianBlur:

    if(sigma1 < FLT_EPSILON)
        return false;

So this mode is not supported through IPP code path yet.

@alalek
Copy link
Copy Markdown
Member Author

alalek commented Oct 31, 2022

👍

@opencv-pushbot opencv-pushbot merged commit b418eb1 into opencv:3.4 Oct 31, 2022
@alalek alalek mentioned this pull request Nov 16, 2022
@alalek alalek mentioned this pull request Jan 8, 2023
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.

ipp_GaussianBlur path in cv::GaussianBlur does not set sigmaY=sigmaX when sigmaY=0, just returns

3 participants