the usage of squeeze

hello i wanna know what does this command do. I_ij = double(squeeze(Image(i,j,:)))

Risposte (1)

the cyclist
the cyclist il 15 Dic 2016
Modificato: the cyclist il 15 Dic 2016

0 voti

It removes singleton dimensions from an array.
For example, it will take a 7 x 1 x 300 array and "squeeze" it into a 7 x 300 array.
The full documentation is here.

1 Commento

Guillaume
Guillaume il 15 Dic 2016
Modificato: Guillaume il 15 Dic 2016
In this particular case, assuming that Image is an rgb image, it converts a 1 x 1 x 3 vector, into a 3 x 1 vector of RGB intensity at pixel (i,j)

Accedi per commentare.

Categorie

Scopri di più su Read, Write, and Modify Image in Centro assistenza e File Exchange

Tag

Richiesto:

il 15 Dic 2016

Modificato:

il 15 Dic 2016

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by