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

1 次查看(过去 30 天)
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.

回答(1 个)

Peyman Ghasemi
Peyman Ghasemi 2017-10-5
编辑:Peyman Ghasemi 2017-10-5
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

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by