What does `imshow(someImage, [])` do?

前端 未结 2 562
名媛妹妹
名媛妹妹 2021-01-20 20:19

I am trying to figure out what the second (empty vector) parameter in imshow(someImage, []) in Matlab is for.

According to doc imshow, it\'

2条回答
  •  生来不讨喜
    2021-01-20 20:53

    With the empty bracket imshow will display the range between the minimum and maximum value. For example, if your image is 16bits, the maximum value is 65536, but if your actual pixel values stop at 1000, imshow(image) will seem black (because even 1000 over 65536 is small). If you use imshow(image, []), then the display will be adjust between 0 and 1000.

    It is the same as:

    minValue = min(min(image));
    maxValue = max(max(image));
    imshow(image,[minValue maxValue]);
    

提交回复
热议问题