Région de recherche :

Date :

https://www.mathworks.com › help › matlab › ref › uint16.html

uint16 - 16-bit unsigned integer arrays - MATLAB - MathWorks

Learn how to create, convert and use variables of type uint16, which are stored as 2-byte (16-bit) unsigned integers. See the range, syntax, examples and extended capabilities of uint16 arrays.

https://fr.mathworks.com › help › matlab › ref › uint16.html

uint16 - 16-bit unsigned integer arrays - MATLAB - MathWorks

If you have an array of a different type, such as double or single, then you can convert that array to an array of type uint16 by using the uint16 function. Syntax Y = uint16(X)

https://www.mathworks.com › help › matlab › creating_plots › working-with-8-bit-and-16-bit...

8-Bit and 16-Bit Images - MATLAB & Simulink - MathWorks

However, to reduce memory requirements for working with images, you can store images as 8-bit or 16-bit unsigned integers using the numeric classes uint8 or uint16, respectively. An image whose data matrix has class uint8 is called an 8-bit image; an image whose data matrix has class uint16 is called a 16-bit image.

8-Bit and 16-Bit Images - MATLAB & Simulink - MathWorks

https://www.mathworks.com › help › matlab › ref › int16.html

int16 - 16-bit signed integer arrays - MATLAB - MathWorks

Learn how to create and convert arrays of type int16, which are stored as 2-byte (16-bit) signed integers in MATLAB. See the range, syntax, examples and extended capabilities of int16 arrays.

https://stackoverflow.com › questions › 1289251

Converting a UINT16 value into a UINT8 array [2] - Stack Overflow

How can I convert a UINT16 value, into a UINT8 * array without a loop and avoiding endian problems. Basically I want to do something like this: UINT16 value = 0xAAFF; UINT8 array[2] = value;

http://www.ece.northwestern.edu › local-apps › matlabhelp › techdoc › ref › uint8.html

uint8, uint16, uint32, uint64 (MATLAB Functions) - Northwestern University

Learn how to convert any numeric object to an unsigned integer with uint* functions in MATLAB. See the output range, type, and bytes per element for each class of unsigned integer.

http://matlab.izmiran.ru › help › techdoc › ref › uint8.html

uint8, uint16, uint32, uint64 (MATLAB Functions) - IZMIRAN

Learn how to convert numeric arrays to unsigned 8-bit integers using uint8 function in MATLAB. See the output range, type, and examples of uint8 operation.

https://fr.mathworks.com › matlabcentral › answers › 80574-converting-a-large-uint16-array...

converting a large uint16 array to doubles - MATLAB Answers - MATLAB ...

is there a method to convert a large matrix of uint16 data to double without going through each individual element? Thanks

https://www.mathworks.com › help › images › ref › im2uint16.html

im2uint16 - Convert image to 16-bit unsigned integers - MATLAB - MathWorks

im2uint16 converts the input image I to data type uint16, rescaling or offsetting the data as necessary. The input image can be grayscale, RGB, binary, or indexed, and the output image is a numeric array of the same size.

https://www.matlabtutorials.com › working-with-8-bit-and-16-bit-images

Working with 8-Bit and 16-Bit Images - Matlab and Simulink Tutorials

The offset allows you to manipulate and display images of this form using the more memory-efficient uint8 and uint16 arrays. Because of the offset, you must add 1 to convert a uint8 or uint16 indexed image to double.