@Namespace(value="tensorflow::ops") @NoOffset public static class tensorflow.ExtractVolumePatches extends Pointer
patches from input and put them in the "depth" output
dimension. 3D extension of extract_image_patches.
Arguments:
* scope: A Scope object
* input: 5-D Tensor with shape [batch, in_planes, in_rows, in_cols, depth].
* ksizes: The size of the sliding window for each dimension of input.
* strides: 1-D of length 5. How far the centers of two consecutive patches are in
input. Must be: [1, stride_planes, stride_rows, stride_cols, 1].
* padding: The type of padding algorithm to use.
We specify the size-related attributes as:
python
ksizes = [1, ksize_planes, ksize_rows, ksize_cols, 1]
strides = [1, stride_planes, strides_rows, strides_cols, 1]
Returns:
* Output: 5-D Tensor with shape [batch, out_planes, out_rows, out_cols,
ksize_planes * ksize_rows * ksize_cols * depth] containing patches
with size ksize_planes x ksize_rows x ksize_cols x depth vectorized
in the "depth" dimension. Note out_planes, out_rows and out_cols
are the dimensions of the output patches.Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator| Constructor and Description |
|---|
ExtractVolumePatches(Pointer p)
Pointer cast constructor.
|
ExtractVolumePatches(tensorflow.Scope scope,
tensorflow.Input input,
int[] ksizes,
int[] strides,
BytePointer padding) |
ExtractVolumePatches(tensorflow.Scope scope,
tensorflow.Input input,
int[] ksizes,
int[] strides,
String padding) |
ExtractVolumePatches(tensorflow.Scope scope,
tensorflow.Input input,
IntBuffer ksizes,
IntBuffer strides,
BytePointer padding) |
ExtractVolumePatches(tensorflow.Scope scope,
tensorflow.Input input,
IntBuffer ksizes,
IntBuffer strides,
String padding) |
ExtractVolumePatches(tensorflow.Scope scope,
tensorflow.Input input,
IntPointer ksizes,
IntPointer strides,
BytePointer padding) |
ExtractVolumePatches(tensorflow.Scope scope,
tensorflow.Input input,
IntPointer ksizes,
IntPointer strides,
String padding) |
| Modifier and Type | Method and Description |
|---|---|
tensorflow.Input |
asInput() |
tensorflow.Output |
asOutput() |
tensorflow.Node |
node() |
tensorflow.Operation |
operation() |
tensorflow.ExtractVolumePatches |
operation(tensorflow.Operation operation) |
tensorflow.Output |
patches() |
tensorflow.ExtractVolumePatches |
patches(tensorflow.Output patches) |
address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, hashCode, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetof, parseBytes, physicalBytes, position, position, put, realloc, setNull, sizeof, toString, totalBytes, totalPhysicalBytes, withDeallocator, zeropublic ExtractVolumePatches(Pointer p)
Pointer.Pointer(Pointer).public ExtractVolumePatches(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input, @tensorflow.ArraySlice IntPointer ksizes, @tensorflow.ArraySlice IntPointer strides, @tensorflow.StringPiece BytePointer padding)
public ExtractVolumePatches(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input, @tensorflow.ArraySlice IntBuffer ksizes, @tensorflow.ArraySlice IntBuffer strides, @tensorflow.StringPiece String padding)
public ExtractVolumePatches(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input, @tensorflow.ArraySlice int[] ksizes, @tensorflow.ArraySlice int[] strides, @tensorflow.StringPiece BytePointer padding)
public ExtractVolumePatches(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input, @tensorflow.ArraySlice IntPointer ksizes, @tensorflow.ArraySlice IntPointer strides, @tensorflow.StringPiece String padding)
public ExtractVolumePatches(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input, @tensorflow.ArraySlice IntBuffer ksizes, @tensorflow.ArraySlice IntBuffer strides, @tensorflow.StringPiece BytePointer padding)
public ExtractVolumePatches(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input, @tensorflow.ArraySlice int[] ksizes, @tensorflow.ArraySlice int[] strides, @tensorflow.StringPiece String padding)
@ByVal @Name(value="operator tensorflow::Output") public tensorflow.Output asOutput()
@ByVal @Name(value="operator tensorflow::Input") public tensorflow.Input asInput()
public tensorflow.Node node()
@ByRef public tensorflow.Operation operation()
public tensorflow.ExtractVolumePatches operation(tensorflow.Operation operation)
@ByRef public tensorflow.Output patches()
public tensorflow.ExtractVolumePatches patches(tensorflow.Output patches)
Copyright © 2019. All rights reserved.