Adjust image intensity values or color map
maps the intensity values in grayscale image J
= imadjust(I
)I
to new values
in J
. By default, imadjust
saturates the
bottom 1% and the top 1% of all pixel values. This operation increases the
contrast of the output image J
.
This syntax is equivalent to imadjust(I,
.stretchlim
(I))
maps intensity values in J
= imadjust(I
,[low_in
high_in]
)I
to new values in
J
such that values between low_in
and high_in
map to values between 0 and 1.
maps intensity values in J
= imadjust(I
,[low_in
high_in]
,[low_out high_out]
)I
to new values in
J
such that values between low_in
and high_in
map to values between low_out
and high_out
.
maps intensity values in J
= imadjust(I
,[low_in
high_in]
,[low_out high_out]
,gamma
)I
to new values in
J
, where gamma
specifies the shape
of the curve describing the relationship between the values in
I
and J
.
maps the values in truecolor image J
= imadjust(RGB
,[low_in
high_in]
,___)RGB
to new values in
J
. You can apply the same mapping or unique mappings
for each color channel.
maps the values in color map newmap
= imadjust(cmap
,[low_in
high_in]
,___)cmap
to new values in
newmap
. You can apply the same mapping or unique
mappings for each color channel.
brighten
| histeq
| stretchlim