How to make the vessels brighter in this segmented image

I want to increase the pixels intensity of segmented blood vessels for a image like this

 Accepted Answer

I = imread('untitled.jpg');
I1 = imadjust(I,[0 0.1]);
imshow(I1)
results in:
vessels.PNG

More Answers (0)

Asked:

on 9 Oct 2019

Commented:

on 12 Oct 2019

Community Treasure Hunt

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

Start Hunting!