Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to test nosiy images in common scenarios ? #25

Closed
hufangjian opened this issue Jan 12, 2021 · 3 comments
Closed

how to test nosiy images in common scenarios ? #25

hufangjian opened this issue Jan 12, 2021 · 3 comments

Comments

@hufangjian
Copy link

Hi, Thank you for your efforts.
but I have question.
In your codes:
seqn = seq + noise
your input are clean data and noise which generate by (" noise = torch.empty_like(seq).normal_(mean=0, std=args['noise_sigma']).to(device)")

But common scenarios ,I got some images with noise. i dont not know the noise distribution.

how can remove image noise and get the clean images.
just like a sequences of these images
11

@m-tassano
Copy link
Owner

Hi,
If I understand correctly, you want to denoise photographic noise, not only Gaussian.
In this case, you can denoise your sequences with the model provided. You will probably have to test with different values for the noise map to see the one that works the best.
Else, you can retrain the model. In this case, you can choose to remove the noise map completely (blind denoising). A second option would be to use a noise estimator, and use its output as noise map.
Hope this helps

@Scienceseb
Copy link

Hi,
If I understand correctly, you want to denoise photographic noise, not only Gaussian.
In this case, you can denoise your sequences with the model provided. You will probably have to test with different values for the noise map to see the one that works the best.
Else, you can retrain the model. In this case, you can choose to remove the noise map completely (blind denoising). A second option would be to use a noise estimator, and use its output as noise map.
Hope this helps

Hello @m-tassano, I am wondering what kind of noise estimator (network) will you used to get a noise map on real noisy image ? I'm working on fluorescent microscopy I have sequence of noisy images and also the sequence of the pseudo non-noisy images, but I dont have the noise map, cause it is a real noise. Thanls

@m-tassano
Copy link
Owner

Hi @Scienceseb , I have not implemented that for fastdvdnet, but I would probably start testing the one proposed with CBDNet. Hope this helps

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants