OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Lsmooth
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/modules/features2d/src/kaze/
TEvolution.h
29
Mat
Lsmooth
; ///< Smoothed image
KAZEFeatures.cpp
67
aux.
Lsmooth
= Mat::zeros(options_.img_height, options_.img_width, CV_32F);
105
gaussian_2D_convolution(evolution_[0].Lt, evolution_[0].
Lsmooth
, 0, 0, options_.sderivatives);
118
gaussian_2D_convolution(evolution_[i - 1].Lt, evolution_[i].
Lsmooth
, 0, 0, options_.sderivatives);
121
Scharr(evolution_[i].
Lsmooth
, evolution_[i].Lx, CV_32F, 1, 0, 1, 0, BORDER_DEFAULT);
122
Scharr(evolution_[i].
Lsmooth
, evolution_[i].Ly, CV_32F, 0, 1, 1, 0, BORDER_DEFAULT);
204
compute_scharr_derivatives(evolution[i].
Lsmooth
, evolution[i].Lx, 1, 0, evolution[i].sigma_size);
205
compute_scharr_derivatives(evolution[i].
Lsmooth
, evolution[i].Ly, 0, 1, evolution[i].sigma_size);
[
all
...]
AKAZEFeatures.cpp
71
step.
Lsmooth
= Mat::zeros(level_height, level_width, CV_32F);
107
evolution_[0].Lt.copyTo(evolution_[0].
Lsmooth
);
131
gaussian_2D_convolution(evolution_[i].Lt, evolution_[i].
Lsmooth
, 0, 0, 1.0f);
134
image_derivatives_scharr(evolution_[i].
Lsmooth
, evolution_[i].Lx, 1, 0);
135
image_derivatives_scharr(evolution_[i].
Lsmooth
, evolution_[i].Ly, 0, 1);
197
compute_scharr_derivatives(evolution[i].
Lsmooth
, evolution[i].Lx, 1, 0, sigma_size_);
198
compute_scharr_derivatives(evolution[i].
Lsmooth
, evolution[i].Ly, 0, 1, sigma_size_);
[
all
...]
Completed in 97 milliseconds