フィルターのクリア

Is it possible to stack a series of binary images to form a 3-D object?

4 ビュー (過去 30 日間)
Ahmed Ismail
Ahmed Ismail 2016 年 3 月 23 日
コメント済み: Image Analyst 2016 年 3 月 23 日
There are some binary images I am planning to segment. Once that is done, I would like to essentially stack all the image to form a 3-D object and perform some quantification. Is this possible in Matlab?

採用された回答

Image Analyst
Image Analyst 2016 年 3 月 23 日
Yes.
binary3d = cat(3, binary1, binary2, binary3, binary4);
  2 件のコメント
Ahmed Ismail
Ahmed Ismail 2016 年 3 月 23 日
I am assuming that for a series of stacked images hundred's long that I can just loop it for the stack?
Image Analyst
Image Analyst 2016 年 3 月 23 日
Yes, but it would be best (faster) to preallocate and overwrite slices rather than append.
[rows, columns] = size(binaryImage1);
% Allocate space for 537 images.
binary3d = false(rows, columns, 537);
% Loop inserting all images into the 3D image.
for k = 1 : 537
thisImage = .... however you get the k'th image
binary3d(:,:,k) = thisImage;
end

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGeometric Transformation and Image Registration についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by