How to make the vessels brighter in this segmented image

1 view (last 30 days)
I want to increase the pixels intensity of segmented blood vessels for a image like this

Accepted Answer

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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!