필터 지우기
필터 지우기

image processing

조회 수: 6 (최근 30일)
ganesh s
ganesh s 2011년 9월 14일
how to read 100 images at a time ? what will appear on the output? how to analyzed the output?
  댓글 수: 6
Jan
Jan 2011년 9월 15일
@Ganesh: Thanks, now the question is much easier to understand.
ganesh s
ganesh s 2011년 9월 16일
@ jan simon : thanks sir for guiding me

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

채택된 답변

Sean
Sean 2011년 9월 15일
Ganesh,
If you are trying to observe the change in each parameter over time (i.e. from image 1 to image 100), just use a for loop around the load/calculate/release for each image and dump the desired parameters into an output array. for example:
for imagecount=1:100
(code:load/calculate/release image)
output(:,i)=[mean stdev];
end
You can then plot or otherwise analyze the trends in mean/stdev.
If you want to get the mean/stdev of the whole datacube, then use a for loop the genereate the entire cube.
for imagecount=1:100
(code: load image & convert to grey)
datacube(:,:,imagecount)=<imagematrix>
end
mu=mean(datacube(:))
sigma=std(datacube(:))
  댓글 수: 1
ganesh s
ganesh s 2011년 9월 16일
thanks sir it will solve my problem.

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

추가 답변 (1개)

Walter Roberson
Walter Roberson 2011년 9월 15일
  댓글 수: 1
ganesh s
ganesh s 2011년 9월 16일
@ walter Roberson : thanks sir for providing me this link it will very helpful to me

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

Community Treasure Hunt

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

Start Hunting!

Translated by