user238469
user238469

Reputation:

Matlab: How to subdivide a coarse grid system into systems with finer grids?

I have a coarse grid of size say 5x5, which I call Grid System-1, and I want to further subdivide that grid system in three steps as:

Grid System-2: Each grid of Grid System-1 is subdivided into 5x5 with 625 total grids

Grid System-3: Each grid of Grid System-2 is subdivided into 5x5 with 15625 total grids

Grid System-4: Each grid of Grid System-3 is subdivided into 5x5 with 390625 total grids

In all the above steps the boundary size of all the Grid Systems is similar (say 1m X 1m)because we are only increasing the fineness of each grid by further subdividing it. Can someone help implement this in Matlab? Thanks!

Upvotes: 1

Views: 508

Answers (1)

bla
bla

Reputation: 26069

Check out this Coarse-to-Fine Image Reconstruction toolbox from the guys at Duke. It may be the thing you're after.

Upvotes: 3

Related Questions