ctx
ctx

Reputation: 31

How to remove noise from Image in openCV Java

I am using openCV in Java Netbeans. I have some pictures with lots of noises.Is there any source code for Opencv Java that reduces noise of an Image?

Upvotes: 2

Views: 6686

Answers (1)

Laurentiu L.
Laurentiu L.

Reputation: 6686

Yes. OpenCV provides denoising algorithms.

You can find 4 variations presented here.

Samples are provided on github here.

You may use the OpenCV Library - 2.4.3 has a class you can use org.opencv.photo.Photo which provides the denoising methods as in the first link.

The the class documentation is here. Note the link no longer has preview so you will have to download the java html docs and look inside org/photo/Photo.html

Upvotes: 3

Related Questions