Actions
Anomalie #66
ouvertbruit dans la pyramide
Début:
26/06/2013
Echéance:
% réalisé:
0%
Temps estimé:
Description
vu dans yoga_wfs.cpp
pour comp_sh_generic :
if (this->noise > 1) {
    //cout << "adding poisson noise" << endl;
    this>d_bincube->prng('P');
  }
  if (this->noise > 0) {
    //cout << "adding detector noise" << endl;
    this->d_bincube->prng('N',this->noise,1.0f);
  }
	pour comp_pyr_generic
if (this->noise > 0) {
    this->d_bincube->prng('N', this->noise,1.0f);
  } else
    cutilSafeCall(cudaMemset(this->d_bincube->getData(), 0,
                 sizeof(float) * this->d_bincube->getNbElem()));
	outre la non prise en compte du cas noise=0 pour la pyramide, je vois qu'il n'y a pas l'argument "beta" de la fonction prng
Aucune donnée à afficher
Actions