Q1. You seem to specify the radius and (optional) sigma values, what are the values? How does blurring the image affect it?
(I tried to change the number of arguments, but I didn't know how it was related.)
- blur radius {xsigma}
Q2. What does the following mean?
Radius should be at least twice the Sigma value, through three times
will produce a more accumulate result.
↓Automatic translation
As a guide, Radius should be at least twice the Sigma value, but if it is three times the Sigma value, you can get more accurate results.
imagemagic image-processing
When asked why, it becomes a pure math problem. ImageMagic blur is calculated by Gaussian function, so sigma value = standard deviation value is more essential. Gaussian blur (Wikipedia) uses only standard deviation values to indicate differences, and the php official commentary in php function.code> calculates the appropriate value.
See Wikipedia images to see how increasing the sigma value changes.
Twice the standard deviation is
, so you can see how wide it is from the diagram of standard deviation."Even if you pick up the surrounding colors from a narrow range, the probability of similar colors is high, so it's hard to become ""blurred."""Even if it's wider than 2 <
3 は3 <
, it's almost meaningless, so I think I understand.
# Six sigma 6 <
in Kaizen also comes from here.
© 2025 OneMinuteCode. All rights reserved.