Searched refs:extract_image_patches (Results 1 – 3 of 3) sorted by relevance
/external/eigen/unsupported/test/ |
D | cxx11_tensor_image_patch.cpp | 28 single_pixel_patch = tensor.extract_image_patches(1, 1); in test_simple_patch() 37 single_pixel_patch_row_major = tensor_row_major.extract_image_patches(1, 1); in test_simple_patch() 67 entire_image_patch = tensor.extract_image_patches(3, 5); in test_simple_patch() 76 entire_image_patch_row_major = tensor_row_major.extract_image_patches(3, 5); in test_simple_patch() 121 twod_patch = tensor.extract_image_patches(2, 2); in test_simple_patch() 130 twod_patch_row_major = tensor_row_major.extract_image_patches(2, 2); in test_simple_patch() 197 …Tensor<float, 5> result = tensor.extract_image_patches(ksize, ksize, stride, stride, 1, 1, PADDING… in test_patch_padding_valid() 212 …Tensor<float, 5, RowMajor> result_row_major = tensor_row_major.extract_image_patches(ksize, ksize,… in test_patch_padding_valid() 270 …Tensor<float, 5> result = tensor.extract_image_patches(ksize, ksize, stride, stride, 1, 1, PADDING… in test_patch_padding_valid_same_value() 285 …Tensor<float, 5, RowMajor> result_row_major = tensor_row_major.extract_image_patches(ksize, ksize,… in test_patch_padding_valid_same_value() [all …]
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorBase.h | 688 extract_image_patches(const Index patch_rows = 1, const Index patch_cols = 1, 698 extract_image_patches(const Index patch_rows, const Index patch_cols, in extract_image_patches() function
|
D | README.md | 1647 ### <Operation> extract_image_patches(const Index patch_rows, const Index patch_cols, 1686 twod_patch = tensor.extract_image_patches<2, 2>(); 1695 twod_patch_row_major = tensor_row_major.extract_image_patches<2, 2>();
|