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

2 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Matt J
Matt J el 29 de Abr. de 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]

Más respuestas (1)

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by