Why isn't one image white and the other black according to my code
이전 댓글 표시
a=ones(78);
>> b=255*ones(78);
>> figure,imshow(a);
>> figure,imshow(b);
>>
If I run the above code then one image should be bright while the other dark(I am using uint8 thus range is 0-255) but the fact is both turn out to be white. May I know why ?
답변 (1개)
Ben11
2014년 7월 28일
0 개 추천
You don't cast anything as being uint8. Try:
figure, imshow(uint8(a));
then it will be black
카테고리
도움말 센터 및 File Exchange에서 Image Acquisition Support Packages for Hardware Adaptors (Generic Video Interface)에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!