MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / meanShift

Function meanShift

src/api/cpp/meanshift.cpp:16–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14namespace af {
15
16array meanShift(const array& in, const float spatial_sigma,
17 const float chromatic_sigma, const unsigned iter,
18 const bool is_color) {
19 af_array out = 0;
20 AF_THROW(af_mean_shift(&out, in.get(), spatial_sigma, chromatic_sigma, iter,
21 is_color));
22 return array(out);
23}
24
25} // namespace af

Callers 3

TESTFunction · 0.50
gforFunction · 0.50
brain_segFunction · 0.50

Calls 3

af_mean_shiftFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected