#include <cstring>
#include "vil_blocked_image_facade.h"
#include <cassert>
#include <vil/vil_property.h>
#include <vil/vil_image_view.h>
#include <vil/vil_crop.h>
#include <vil/vil_copy.h>
Go to the source code of this file.
◆ FILL_BLOCK_CASE
| #define FILL_BLOCK_CASE |
( |
|
FORMAT, |
|
|
|
T |
|
) |
| |
Value:case FORMAT: { \
vil_image_view_base_sptr ptr = dest; \
vil_copy_to_window<T>(*src, *dest, 0, 0); \
return dest; \
} break
Concrete view of image data of type T held in memory.
◆ TRIM_BLOCK_CASE
| #define TRIM_BLOCK_CASE |
( |
|
FORMAT, |
|
|
|
T |
|
) |
| |
Value:case FORMAT: { \
vil_image_view< T > cview = \
vil_crop(curr_view, 0, icrop, 0, jcrop); \
return src_->put_view(cview, i0, j0); \
} break
Concrete view of image data of type T held in memory.