How to convert the images (green, blue and black background ) that to be look similar to H&E images.
1 view (last 30 days)
Show older comments
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.
0 Comments
Answers (1)
Peyman Ghasemi
on 5 Oct 2017
Edited: Peyman Ghasemi
on 5 Oct 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
0 Comments
See Also
Categories
Find more on Color in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!