Definition in file vil_copy.txx.
#include "vil_copy.h"
#include <vcl_cassert.h>
#include <vil/vil_image_view.h>
Go to the source code of this file.
Defines | |
| #define | VIL_COPY_INSTANTIATE(T) |
| #define VIL_COPY_INSTANTIATE | ( | T | ) |
Value:
template void vil_copy_deep(const vil_image_view<T > &src, vil_image_view<T > &dest); \ template void vil_copy_to_window(const vil_image_view<T > &src, vil_image_view<T > &dest, \ unsigned i0, unsigned j0); \ template void vil_copy_reformat(const vil_image_view<T > &src, vil_image_view<T > &dest); \ template vil_image_view<T > vil_copy_deep(const vil_image_view<T > &rhs)
Definition at line 68 of file vil_copy.txx.
| vil_image_view<T> vil_copy_deep | ( | const vil_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 vil_copy.txx.
| void vil_copy_deep | ( | const vil_image_view< T > & | src, | |
| vil_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 vil_copy.txx.
| void vil_copy_reformat | ( | const vil_image_view< T > & | src, | |
| vil_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 vil_copy.txx.
| void vil_copy_to_window | ( | const vil_image_view< T > & | src, | |
| vil_image_view< T > & | dest, | |||
| unsigned | i0, | |||
| unsigned | j0 | |||
| ) | [related] |
Copy src to window in dest.
Size of window is defined by src. O(window.size).
Definition at line 53 of file vil_copy.txx.
1.5.1