Effacer les filtres
Effacer les filtres

Cut a picture as needed

1 vue (au cours des 30 derniers jours)
tao wang
tao wang le 26 Mar 2022
Commenté : tao wang le 26 Mar 2022
For example, I want to cut the picture into 9 pictures. I want to use the for loop, and then save the cut image into variables A1, A2,,, an. In this way, how do I in AI in the for loop change with the loop? I know how to save it locally, but I want to save it into the workspace. Thank you. I'd appreciate it if you can give an example

Réponse acceptée

Matt J
Matt J le 26 Mar 2022
Modifié(e) : Matt J le 26 Mar 2022
Download mat2tiles and then,
Image=rand(900);
A=mat2tiles(Image,[300,300])
A = 3×3 cell array
{300×300 double} {300×300 double} {300×300 double} {300×300 double} {300×300 double} {300×300 double} {300×300 double} {300×300 double} {300×300 double}
  4 commentaires
Matt J
Matt J le 26 Mar 2022
Modifié(e) : Matt J le 26 Mar 2022
Each element in the array is in decimal form, but shouldn't the image be an integer?
If you gave mat2tiles an integer array, the cells should be of that type as well.
Image=randi(255,900,'uint8');
mat2tiles(Image,[300,300])
ans = 3×3 cell array
{300×300 uint8} {300×300 uint8} {300×300 uint8} {300×300 uint8} {300×300 uint8} {300×300 uint8} {300×300 uint8} {300×300 uint8} {300×300 uint8}
tao wang
tao wang le 26 Mar 2022
Sorry, it's actually a double precision form with a decimal point. That's wrong
This is the method I wanted to use before. Thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by