Generating seperate histogram curves for different brain tissue in T1 and T2 MR Images

2 ビュー (過去 30 日間)
Cyrus
Cyrus 2016 年 8 月 8 日
コメント済み: Nasrin Akter 2020 年 10 月 28 日
Dear all,
I am working on brain MRI segmentation. In some studies I have seen that they could create separate curves in histogram for different parts of the brain, like "White matter", or "Gray matter", and CSF (CerebroSpinal Fluid) for t1 and t2 MR images. An example is shown in bellow.
The left-hand image is T1-weighted, the one on the right is T2-weighted.
And these are the created histograms:
I could create histogram, for the whole brain, but not separately for different tissues/parts.
Now, my question is:
How is the process?, did they first extracted different parts then created histogram for all parts and showed them all in one figure, or is it possible to create the separate histogram curves for different tissues all at once.
Any Idea how to do that?
thanks.
  1 件のコメント
Nasrin Akter
Nasrin Akter 2020 年 10 月 28 日
Hello
Did you generate these T1 and T2 weighted images? Is there any code available?

サインインしてコメントする。

回答 (1 件)

Image Analyst
Image Analyst 2016 年 8 月 8 日
First you have to segment the images. From the looks of the histograms I can tell that, because they overlap, that you cannot simply use gray level range to do the segmentation. You'll have to use additional other criteria, such as shape or location. Once there's segmented you'll have a mask for every region and you can use logical indexing and histogram or histcounts to make the histogram
histogram(grayImage(gmMask));
histogram(grayImage(wmMask));
histogram(grayImage(csfMask));
For algorithms to get the various tissue type masks, see http://www.visionbib.com/bibliography/contents.html
  2 件のコメント
Cyrus
Cyrus 2016 年 8 月 8 日
Thank you for your response, any idea for segmentation algorithm? our goal is to segment the image into three clusters, WM, GM and CSF.
Best.
Image Analyst
Image Analyst 2016 年 8 月 8 日
My idea was the last sentence of my answer.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMRI についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by