How can I know what my image dimension is?

4 ビュー (過去 30 日間)
Shirin
Shirin 2014 年 5 月 15 日
回答済み: Image Analyst 2014 年 5 月 15 日
Hi guys, I'm trying to register to medical images (CT & Echocardiography) together. while running the code, I faced to this error about "Image Dimension":
"Argument 'MovingImage' failed validation with error: All dimensions of the moving image should be greater than 4."
How can I know what my image dimension is, to set it greater than 4? Thank you in advance

回答 (2 件)

Peter Bone
Peter Bone 2014 年 5 月 15 日
If the image matrix is in your workspace, then just look at your workspace pane. It will tell you the dimensions. You could also use the size command to return the size of a matrix. Also, use imshow to make sure your images are correct. It sounds strange that the dimension should be 4 or less. Is it a colour image? Perhaps you have to convert to grayscale first to get a 2D matrix.

Image Analyst
Image Analyst 2014 年 5 月 15 日
Not sure how you're defining dimension but it should be 2 for a grayscale image and 3 for a color image or 3D volumetric image. You can do this
[rows, columns, numberOfColorChannels] = size(yourImage)
numberOfDimensions = ndims(yourImage)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by