imcomplement
对图像求补码
说明
示例
创建 uint8 数组的补码
X = uint8([ 255 10 75; 44 225 100]); X2 = imcomplement(X)
X2 = 2x3 uint8 matrix
0 245 180
211 30 155
在二值图像中反转黑白
对强度图像取反色
创建彩色图像取反色
将一个彩色图像读入工作区中。
rgb = imread('yellowlily.jpg');
imshow(rgb)
显示该图像的反色。
c = imcomplement(rgb); imshow(c)
生成的图像的每个颜色通道均为原始图像中对应颜色通道的反色。原本黑暗的区域,如泥土,变得明亮。在原始图像中,因为红色和绿色信号的混合,叶呈现绿色,花瓣呈现黄色。在反色图像中,叶呈现紫色,因为红色和蓝色信号大于绿色信号。花瓣呈现蓝色是因为蓝色信号大于红色和绿色通道。
输入参数
I
— 输入图像
RGB 图像 | 灰度图像 | 二值图像
输入图像,指定为 RGB、灰度或二值图像。
数据类型: single
| double
| int8
| int16
| int32
| uint8
| uint16
| uint32
| logical
详细信息
图像反色
对二值图像取反色时,0 变为 1,1 变为 0。黑白发生颠倒。
在对灰度或彩色图像取反色时,各值是从所属类支持的最大像素值(对于双精度图像为 1.0)中减去对应像素值而得到的。差值用作输出图像中的像素值。在输出图像中,暗区域变亮,亮区域变暗。对于彩色图像,红色变青色,绿色变品红,蓝色变黄色,反之亦然。
提示
如果
I
是double
类的灰度或 RGB 图像,则可以使用表达式1-I
代替此函数。如果
I
是二值图像,则可以使用表达式~I
代替此函数。
扩展功能
C/C++ 代码生成
使用 MATLAB® Coder™ 生成 C 代码和 C++ 代码。
用法说明和限制:
imcomplement
支持 C 代码生成(需要 MATLAB® Coder™)。有关详细信息,请参阅图像处理的代码生成。imcomplement
不支持int64
和uint64
数据类型。
GPU 代码生成
使用 GPU Coder™ 为 NVIDIA® GPU 生成 CUDA® 代码。
用法说明和限制:
imcomplement
不支持int64
和uint64
数据类型。
GPU 数组
通过使用 Parallel Computing Toolbox™ 在图形处理单元 (GPU) 上运行来加快代码执行。
此函数完全支持 GPU 数组。有关详细信息,请参阅GPU 上的图像处理。
版本历史记录
在 R2006a 之前推出
另请参阅
imabsdiff
| imadd
| imdivide
| imlincomb
| immultiply
| imsubtract
MATLAB 命令
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)