コード例 #1
0
 /**
  * @brief
  * Constructor
  *
  * @param image
  * The image
  * @param psf
  * The %PSF to de-convolve
  *
  * Note that it is not important to know about the %PSF, just that
  * it is an object that can convolve itself withan image
  */
 public RichardsonLucyDeconvolution(ImageF image, IConvolutable psf)
 {
     Image = image;
     Psf   = psf;
     Sn    = ImageF.ConstantImage(image.Width, image.Height, 0.5);
 }
コード例 #2
0
 /**
  * @brief
  * Constructor
  *
  * @param image
  * The image
  * @param psf
  * The %PSF to de-convolve
  *
  * Note that it is not important to know about the %PSF, just that
  * it is an object that can convolve itself withan image
  */
 public RichardsonLucyDeconvolution(ImageF image, IConvolutable psf)
 {
     Image = image;
     Psf = psf;
     Sn = ImageF.ConstantImage(image.Width, image.Height, 0.5);
 }