im2uint8
将图像转换为 8 位无符号整数
说明
示例
将 uint16 数组转换为 uint8 数组
创建一个数据类型为 uint16
的数组。
I = reshape(uint16(linspace(0,65535,25)),[5 5])
I = 5x5 uint16 matrix
0 13653 27306 40959 54613
2731 16384 30037 43690 57343
5461 19114 32768 46421 60074
8192 21845 35498 49151 62804
10923 24576 38229 51882 65535
将该数组转换为数据类型 uint8
。
I2 = im2uint8(I)
I2 = 5x5 uint8 matrix
0 53 106 159 213
11 64 117 170 223
21 74 128 181 234
32 85 138 191 244
43 96 149 202 255
输入参数
I
— 输入图像
数值数组 | 逻辑数组
输入图像,指定为任意大小和维度的数值数组或逻辑数组。
如果
I
是灰度或 RGB 图像,则它可以是uint8
、uint16
、int16
、double
、single
或logical
数据类型。im2uint8
需要数据类型为double
和single
的图像的值在 [0, 1] 的范围内。如果I
的值超出范围 [0, 1],则可以使用rescale
函数将值重新缩放到需要的范围。如果
I
是索引图像,则其数据类型可以是uint8
、uint16
、double
或logical
。如果索引图像属于double
数据类型,则最大值必须等于或小于 256。如果索引图像属于uint16
数据类型,则最大值必须等于或小于 255。如果
I
是二值图像,则它必须为logical
。
数据类型: single
| double
| int16
| uint8
| uint16
| logical
扩展功能
C/C++ 代码生成
使用 MATLAB® Coder™ 生成 C 代码和 C++ 代码。
用法说明和限制:
im2uint8
支持 C 代码生成(需要 MATLAB® Coder™)。请注意,如果您选择通用的MATLAB Host Computer
目标平台,im2uint8
生成的代码将使用平台特定的预编译共享库。使用共享库可保留性能上的优化,但适用范围仅限于生成的代码所适用的目标平台。有关详细信息,请参阅Image Processing Toolbox 中代码生成支持的类型。
GPU 代码生成
使用 GPU Coder™ 为 NVIDIA® GPU 生成 CUDA® 代码。
基于线程的环境
使用 MATLAB® backgroundPool
在后台运行代码或使用 Parallel Computing Toolbox™ ThreadPool
加快代码运行速度。
此函数完全支持基于线程的环境。有关详细信息,请参阅在基于线程的环境中运行 MATLAB 函数。
GPU 数组
通过使用 Parallel Computing Toolbox™ 在图形处理单元 (GPU) 上运行来加快代码执行。
此函数完全支持 GPU 数组。有关详细信息,请参阅GPU 上的图像处理。
版本历史记录
在 R2006a 之前推出R2021b: 支持基于线程的环境
im2uint8
现在支持基于线程的环境。
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)