ULTRASOUND IMAGE PROCESSING: ROI, CONTRAST IN db

5 views (last 30 days)
Hi,
I'm a biomedical engineering student at La Sapienza.
I'm supposed to process an ultrasound image(.tif):
  1. Select different ROI
  2. Evaluate the contrast i db for each ROI as in the figure.
Can someone help me?
Thanks

Accepted Answer

Ameer Hamza
Ameer Hamza on 10 May 2020
You can use drawcircle() to select a circular region of interest and then create a mask from the ROI. Then you can apply the formula to calculates the contrast value. For example
im = rgb2gray(im2double(imread('peacock.jpg')));
imshow(im);
roi = drawcircle;
mask = createMask(roi);
% formula for contrast value

More Answers (1)

Image Analyst
Image Analyst on 10 May 2020

Categories

Find more on Biomedical Imaging 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!