-
Notifications
You must be signed in to change notification settings - Fork 549
Expand file tree
/
Copy pathresize.cpp
More file actions
38 lines (32 loc) · 1.13 KB
/
resize.cpp
File metadata and controls
38 lines (32 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*******************************************************
* Copyright (c) 2014, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#include <af/array.h>
#include <af/image.h>
#include "error.hpp"
namespace af {
array resize(const array &in, const dim_t odim0, const dim_t odim1,
const interpType method) {
af_array out = 0;
AF_THROW(af_resize(&out, in.get(), odim0, odim1, method));
return array(out);
}
array resize(const float scale0, const float scale1, const array &in,
const interpType method) {
af_array out = 0;
AF_THROW(af_resize(&out, in.get(), in.dims(0) * scale0, in.dims(1) * scale1,
method));
return array(out);
}
array resize(const float scale, const array &in, const interpType method) {
af_array out = 0;
AF_THROW(af_resize(&out, in.get(), in.dims(0) * scale, in.dims(1) * scale,
method));
return array(out);
}
} // namespace af