uint8 vs int8 in imshow
Hello,
What is difference between these?
When i use int8 , the most of pixel been 127 and when i use uint8 the problem is solve.
I=imread(‘cameraman.tif’);
I = uint8(I);
imshow(I);
I=imread(‘cameraman.tif’);
I = int8(I);
imshow(I);Hello,
What is difference between these?
When i use int8 , the most of pixel been 127 and when i use uint8 the problem is solve.
I=imread(‘cameraman.tif’);
I = uint8(I);
imshow(I);
I=imread(‘cameraman.tif’);
I = int8(I);
imshow(I); Hello,
What is difference between these?
When i use int8 , the most of pixel been 127 and when i use uint8 the problem is solve.
I=imread(‘cameraman.tif’);
I = uint8(I);
imshow(I);
I=imread(‘cameraman.tif’);
I = int8(I);
imshow(I); camerman MATLAB Answers — New Questions