MATLAB: How to make the vessels brighter in this segmented image

increase intenistyvessel segmentation

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

Best Answer

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