OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:weights_sum
(Results
1 - 5
of
5
) sorted by null
/external/opencv3/modules/photo/src/
fast_nlmeans_denoising_invoker_commons.hpp
318
static inline void f(IT* estimation, IT*
weights_sum
, WT weight, T p)
321
weights_sum
[0] += (IT)weight;
327
static inline void f(IT* estimation, IT*
weights_sum
, WT weight, Vec<ET, 2> p)
331
weights_sum
[0] += (IT)weight;
337
static inline void f(IT* estimation, IT*
weights_sum
, WT weight, Vec<ET, 3> p)
342
weights_sum
[0] += (IT)weight;
348
static inline void f(IT* estimation, IT*
weights_sum
, WT weight, Vec<ET, 4> p)
354
weights_sum
[0] += (IT)weight;
360
static inline void f(IT* estimation, IT*
weights_sum
, Vec<EW, 2> weight, Vec<ET, 2> p)
364
weights_sum
[0] += (IT)weight[0]
[
all
...]
fast_nlmeans_denoising_invoker.hpp
226
IT estimation[pixelInfo<T>::channels],
weights_sum
[pixelInfo<WT>::channels];
local
230
weights_sum
[channel_num] = 0;
241
incWithWeight<T, IT, WT>(estimation,
weights_sum
, weight, p);
246
weights_sum
);
fast_nlmeans_multi_denoising_invoker.hpp
246
IT estimation[pixelInfo<T>::channels],
weights_sum
[pixelInfo<WT>::channels];
local
250
weights_sum
[channel_num] = 0;
267
incWithWeight<T, IT, WT>(estimation,
weights_sum
, weight, p);
273
weights_sum
);
/external/opencv3/modules/stitching/src/
blenders.cpp
178
Mat
weights_sum
(dst_roi.size(), CV_32F);
179
weights_sum
.setTo(0);
185
add(
weights_sum
(roi), weight_maps[i],
weights_sum
(roi));
192
Mat tmp =
weights_sum
(roi);
/external/opencv3/modules/photo/src/cuda/
nlm.cu
399
float
weights_sum
= 0;
414
weights_sum
+= weight;
422
Unroll<VecTraits<T>::cn>::tie(
weights_sum
, sum),
427
dst = saturate_cast<T>(sum /
weights_sum
);
Completed in 863 milliseconds