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

1 visualización (últimos 30 días)
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.

Respuestas (1)

Peyman Ghasemi
Peyman Ghasemi el 5 de Oct. de 2017
Editada: Peyman Ghasemi el 5 de Oct. de 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

Categorías

Más información sobre Convert Image Type en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by