Functions
vil_tile_images.h File Reference

Create a big image by tiling images in patches. More...

#include <vector>
#include <cmath>
#include <vil/vil_image_view.h>
#include <cassert>

Go to the source code of this file.

Functions

template<class T >
void vil_tile_images (vil_image_view< T > &big_image, const std::vector< vil_image_view< T > > &patches)
 Create a big image by tiling images in patches (must be of same size). More...
 

Detailed Description

Create a big image by tiling images in patches.

Author
Tim Cootes

Definition in file vil_tile_images.h.

Function Documentation

◆ vil_tile_images()

template<class T >
void vil_tile_images ( vil_image_view< T > &  big_image,
const std::vector< vil_image_view< T > > &  patches 
)
inline

Create a big image by tiling images in patches (must be of same size).

Creates a large image by putting smaller images into an approximately square grid. If there are n small images, the grid will have sqrt(n) columns.

See also
contrib/mul/tools/tile_images_2d

Definition at line 24 of file vil_tile_images.h.