You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove mirtkGaussian.h and mirtkGaussian.cc files and use mirtk::ScalarGaussian class from Numerics module instead which implements the exact same thing. Possibly add missing default argument .0 for y_0 in argument list of constructor of mirtk::ScalarGaussian such that you can write
mirtk::ScalarGaussian gaussian(sigma, mu);
or add another constructor overload with two double arguments where the order is "mu, sigma".
The text was updated successfully, but these errors were encountered:
Remove
mirtkGaussian.h
andmirtkGaussian.cc
files and usemirtk::ScalarGaussian
class from Numerics module instead which implements the exact same thing. Possibly add missing default argument.0
fory_0
in argument list of constructor ofmirtk::ScalarGaussian
such that you can writemirtk::ScalarGaussian gaussian(sigma, mu);
or add another constructor overload with two double arguments where the order is "mu, sigma".
The text was updated successfully, but these errors were encountered: