Filter löschen
Filter löschen

error using imfinfo()

3 Ansichten (letzte 30 Tage)
Sajitha K.N.
Sajitha K.N. am 13 Okt. 2019
Kommentiert: Walter Roberson am 13 Okt. 2019
When I using imfinfo() function for finding bit depth of an image it shows an error messege that my image is in uni8 type and image should be in char or string type.What can I do now? please help someone. Its very urgent.

Antworten (1)

Walter Roberson
Walter Roberson am 13 Okt. 2019
Images in memory such as your compareimages do not have a "bitdepth", and cannot be queried with imfinfo()
Before you while loop, do
filenames = ds.Files;
Then change
info = imfinfo( compareimages);
to
thisfile = filenames{k};
info = imfinfo(thisfile);
  3 Kommentare
Sajitha K.N.
Sajitha K.N. am 13 Okt. 2019
I want to find bit depth of compareimages
Walter Roberson
Walter Roberson am 13 Okt. 2019
Oh, here it is. You have
outputimage1 = im2uint8(filtered_3x3);
outputimage2 = im2uint8(filtered_3x3);
so no matter what the bit depth of the input image, your outputimage1 and outputimage2 are 8 bit. You then
compareimages = imabsdiff(outputimage2,outputimage1);
The result of imabsdiff() of two uint8 images is uint8 . Therefore the bit depth of compareimages is 8 no matter what the input files were.
It is possible that you will not need the full 8 bits to represent the result, but that is a different question. For example if you have an input image that consisted only of values 0 and 255, then each location could be encoded as a single bit for a bit depth of 1, but would still require a bit depth of 8 because of the way that the image is stored.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Read, Write, and Modify Image finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by