How to divide a image into cells and naming the cells with numbers. then transformed the cells in the image to transform the image....can anyone pls give me a code for this
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
How to divide a image into cells and naming the cells with numbers. then transformed the cells in the image to transform the image....can anyone pls give me a code for this
1 Kommentar
Akzeptierte Antwort
Matt J
am 29 Apr. 2013
If you mean "cells" as in the MATLAB cell array data type, then this might be what you need
E.g.,
>> Image=rand(64); ImageCells=mat2tiles(Image,[16,16])
ImageCells =
[16x16 double] [16x16 double] [16x16 double] [16x16 double]
[16x16 double] [16x16 double] [16x16 double] [16x16 double]
[16x16 double] [16x16 double] [16x16 double] [16x16 double]
[16x16 double] [16x16 double] [16x16 double] [16x16 double]
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Geometric Transformation and Image Registration finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!