텐서플로우:: 작전:: 볼륨 패치 추출
#include <array_ops.h> input 에서 patches 추출하여 "깊이" 출력 차원에 넣습니다.
요약
 extract_image_patches 의 3D 확장입니다.
인수:
- 범위: 범위 개체
-  입력: [batch, in_planes, in_rows, in_cols, depth]모양의 5차원 텐서 .
-  ksizes: input의 각 차원에 대한 슬라이딩 윈도우의 크기입니다.
-  strides: 길이 5의 1-D. 두 연속 패치의 중심이 input에 있는 거리입니다. 다음과 같아야 합니다:[1, stride_planes, stride_rows, stride_cols, 1].
- padding: 사용할 패딩 알고리즘 유형입니다.
크기 관련 속성을 다음과 같이 지정합니다.
      ksizes = [1, ksize_planes, ksize_rows, ksize_cols, 1]
      strides = [1, stride_planes, strides_rows, strides_cols, 1]보고:
-  Output: "깊이" 차원에서 벡터화된ksize_planes x ksize_rows x ksize_cols x depth의 패치를 포함하는[batch, out_planes, out_rows, out_cols, ksize_planes * ksize_rows * ksize_cols * depth]모양의 5차원 텐서 .out_planes,out_rows및out_cols는 출력 패치의 크기입니다.
| 생성자와 소멸자 | |
|---|---|
| ExtractVolumePatches (const :: tensorflow::Scope & scope, :: tensorflow::Input input, const gtl::ArraySlice< int > & ksizes, const gtl::ArraySlice< int > & strides, StringPiece padding) | 
| 공개 속성 | |
|---|---|
| operation | |
| patches | |
| 공공 기능 | |
|---|---|
| node () const | ::tensorflow::Node * | 
| operator::tensorflow::Input () const | |
| operator::tensorflow::Output () const | |
공개 속성
작업
Operation operation
패치
::tensorflow::Output patches
공공 기능
볼륨 패치 추출
ExtractVolumePatches( const ::tensorflow::Scope & scope, ::tensorflow::Input input, const gtl::ArraySlice< int > & ksizes, const gtl::ArraySlice< int > & strides, StringPiece padding )
마디
::tensorflow::Node * node() const
연산자::텐서플로우::입력
operator::tensorflow::Input() const
연산자::텐서플로우::출력
operator::tensorflow::Output() const