image contrast brightness adjust
이전 댓글 표시
Hi all
i want try open multiple images using implay. but want to change contrast first. Below is my code, but still error. anyone can help me.
P = zeros(512, 512, 313);
for K = 1 : 313
petname = sprintf('TRANSA001_CT%03d.dcm', K);
P(:,:,K) = dicomread(petname);
end
Out(:,:,K) = imadjust(P(:,:,K));
implay(Out, [-182 292]);
댓글 수: 9
KSSV
2018년 3월 14일
What error you facing? Show us the error and error line.
mohd akmal masud
2018년 3월 14일
KSSV
2018년 3월 14일
problem is at implay..I think imadjust is working fine.
mohd akmal masud
2018년 3월 14일
KSSV
2018년 3월 14일
What is class and size of out ?
simply try:
implay(Out)
mohd akmal masud
2018년 3월 14일
mohd akmal masud
2018년 3월 14일
KSSV
2018년 3월 14일
implay(Out, [-182 292]);
What is Out class?
mohd akmal masud
2018년 3월 14일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Image Preview and Device Configuration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!