Image processing value Extraction

1 回表示 (過去 30 日間)
Jab
Jab 2016 年 1 月 25 日
コメント済み: Jab 2016 年 1 月 25 日
I have a 3D image of size 100*90*100 format int16 with more pixel values and another segmented image of size 100*90*100 in uint8 format with 4 pixels i.e 0- background 1, 2 and 3 foreground.
Now I want to extract the pixels from the 1st image based on the 2nd image pixel's location (example the pixels have to be extracted from the 1st image only where the 2nd image has pixel value 2).
Any help is appreciated.

採用された回答

Image Analyst
Image Analyst 2016 年 1 月 25 日
Try this:
extractedPixels = image1(image2==2);
It will be a 1-D vector of all the voxel values in image #1, where image #2 has a value of 2.
  1 件のコメント
Jab
Jab 2016 年 1 月 25 日
Thank you very much!

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by