필터 지우기
필터 지우기

How to store a different image blocks in variable using array?

조회 수: 1 (최근 30일)
ak
ak 2012년 1월 19일
i had divided my image into overlapping blocks...and i can display it...but i like to store those different blocks in particular variables using array in order to find mean,variance,std deviation and magnitude,direction...So how is possible in array
  댓글 수: 5
Image Analyst
Image Analyst 2012년 1월 20일
In other words, what the heck is a "block"????????????? To me it's this
block1 = imageArray(row1:row2, column1:column2);
Now, block1 is a block. But it is also a variable, and that variable has a name, which is "block1." If you're not doing that, then what in the world are you doing?
ak
ak 2012년 1월 20일
sorry sir let me explain in clear.
We had taken a 500x500 image and divided into many blocks using for loop.and i want to store each block in different new variable using array

댓글을 달려면 로그인하십시오.

답변 (2개)

Walter Roberson
Walter Roberson 2012년 1월 19일
blocks(:,:,ThisBlockNumber) = thisblock;
  댓글 수: 3
ak
ak 2012년 1월 20일
sir while handling above command i am finding Error "Dimension missmatch" . So how it can be rectified?
Walter Roberson
Walter Roberson 2012년 1월 20일
blocks(:,:,:,ThisBlockNumber) = thisblock;
if thisblock is an RGB image (3 dimensional)

댓글을 달려면 로그인하십시오.


Walter Roberson
Walter Roberson 2012년 1월 20일
If you want to store each block in a separate variable.. Please don't!

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by