Definition in file vil3d_copy.txx.
#include "vil3d_copy.h"
#include <vcl_cassert.h>
#include <vil3d/vil3d_image_view.h>
Go to the source code of this file.
Defines | |
| #define | VIL3D_COPY_INSTANTIATE(T) |
| #define VIL3D_COPY_INSTANTIATE | ( | T | ) |
Value:
template void vil3d_copy_to_window(const vil3d_image_view<T > &, vil3d_image_view<T > &, \ unsigned, unsigned, unsigned); \ template void vil3d_copy_reformat(const vil3d_image_view<T > &, vil3d_image_view<T > &); \ template vil3d_image_view<T > vil3d_copy_deep(const vil3d_image_view<T > &); \ template void vil3d_copy_deep(const vil3d_image_view<T > &, vil3d_image_view<T > &)
Definition at line 70 of file vil3d_copy.txx.
| vil3d_image_view<T> vil3d_copy_deep | ( | const vil3d_image_view< T > & | src | ) | [related] |
Create a copy of the data viewed by this, and return a view of copy.
Definition at line 25 of file vil3d_copy.txx.
| void vil3d_copy_deep | ( | const vil3d_image_view< T > & | src, | |
| vil3d_image_view< T > & | dest | |||
| ) | [related] |
Create a copy of the data viewed by this, and return a view of copy.
Definition at line 18 of file vil3d_copy.txx.
| void vil3d_copy_reformat | ( | const vil3d_image_view< T > & | src, | |
| vil3d_image_view< T > & | dest | |||
| ) | [related] |
Copy src to dest, without changing dest's view parameters.
This is useful if you want to copy an image into a window on another image. src and dest must have identical sizes, and types.
Definition at line 37 of file vil3d_copy.txx.
| void vil3d_copy_to_window | ( | const vil3d_image_view< T > & | src, | |
| vil3d_image_view< T > & | dest, | |||
| unsigned | i0, | |||
| unsigned | j0, | |||
| unsigned | k0 | |||
| ) | [related] |
Copy src to window in dest.
Size of window is defined by src. O(window.size).
Definition at line 54 of file vil3d_copy.txx.
1.5.1