Filter löschen
Filter löschen

How to convert the images (green, blue and black background ) that to be look similar to H&E images.

1 Ansicht (letzte 30 Tage)
Hi everyone,
I have an image with two different color green and blue with the black background and I want to convert it to be similar than H&E images, as we can see in the attached file.
could any of you guys help me, please.

Antworten (1)

Peyman Ghasemi
Peyman Ghasemi am 5 Okt. 2017
Bearbeitet: Peyman Ghasemi am 5 Okt. 2017
Hi Saleh;
I think you can test this simple way:
calculate the histogram of your two sample images for each RGB channel. then calculate the ratio of histograms of each image: ratio = imhist(im2) ./ imhist(im1) %DO THIS FOR EACH RGB CHANNEL
Now you have ratio that able to convert intensities in each color of each image. So multiply the ratio to the input image and get the output histogram. (OutputHistogram = imhist(InputImage) .* ratio). Then use histeq(InputImage , OutputHistogram) to change the input image to the desired colors.
I haven't tested this way, but I think it can be useful.
Bests, Peyman

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by