Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
4509fe55
Commit
4509fe55
authored
Apr 29, 2014
by
Ievgen Khvedchenia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean-up of getters/setters that are not needed by OpenCV
parent
2daa14e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
141 deletions
+0
-141
KAZEFeatures.h
modules/features2d/src/kaze/KAZEFeatures.h
+0
-141
No files found.
modules/features2d/src/kaze/KAZEFeatures.h
View file @
4509fe55
...
...
@@ -33,7 +33,6 @@ private:
int
nsublevels_
;
// Number of sublevels per octave level
int
img_width_
;
// Width of the original image
int
img_height_
;
// Height of the original image
bool
save_scale_space_
;
// For saving scale space images
std
::
vector
<
TEvolution
>
evolution_
;
// Vector of nonlinear diffusion evolution
float
kcontrast_
;
// The contrast parameter for the scalar nonlinear diffusion
float
dthreshold_
;
// Feature detector threshold response
...
...
@@ -119,146 +118,6 @@ private:
// Descriptor Mode -> 2 G-SURF 128
void
Get_GSURF_Upright_Descriptor_128
(
const
cv
::
KeyPoint
&
kpt
,
float
*
desc
);
void
Get_GSURF_Descriptor_128
(
const
cv
::
KeyPoint
&
kpt
,
float
*
desc
);
public
:
// Setters
void
Set_Scale_Offset
(
float
soffset
)
{
soffset_
=
soffset
;
}
void
Set_SDerivatives
(
float
sderivatives
)
{
sderivatives_
=
sderivatives
;
}
void
Set_Octave_Max
(
int
omax
)
{
omax_
=
omax
;
}
void
Set_NSublevels
(
int
nsublevels
)
{
nsublevels_
=
nsublevels
;
}
void
Set_Save_Scale_Space_Flag
(
bool
save_scale_space
)
{
save_scale_space_
=
save_scale_space
;
}
void
Set_Image_Width
(
int
img_width
)
{
img_width_
=
img_width
;
}
void
Set_Image_Height
(
int
img_height
)
{
img_height_
=
img_height
;
}
void
Set_KContrast
(
float
kcontrast
)
{
kcontrast_
=
kcontrast
;
}
void
Set_Detector_Threshold
(
float
dthreshold
)
{
dthreshold_
=
dthreshold
;
}
void
Set_Diffusivity_Type
(
int
diffusivity
)
{
diffusivity_
=
diffusivity
;
}
void
Set_Descriptor_Mode
(
int
descriptor_mode
)
{
descriptor_mode_
=
descriptor_mode
;
}
void
Set_Use_FED
(
bool
use_fed
)
{
use_fed_
=
use_fed
;
}
void
Set_Upright
(
bool
use_upright
)
{
use_upright_
=
use_upright
;
}
void
Set_Extended
(
bool
use_extended
)
{
use_extended_
=
use_extended
;
}
// Getters
float
Get_Scale_Offset
(
void
)
{
return
soffset_
;
}
float
Get_SDerivatives
(
void
)
{
return
sderivatives_
;
}
int
Get_Octave_Max
(
void
)
{
return
omax_
;
}
int
Get_NSublevels
(
void
)
{
return
nsublevels_
;
}
bool
Get_Save_Scale_Space_Flag
(
void
)
{
return
save_scale_space_
;
}
int
Get_Image_Width
(
void
)
{
return
img_width_
;
}
int
Get_Image_Height
(
void
)
{
return
img_height_
;
}
float
Get_KContrast
(
void
)
{
return
kcontrast_
;
}
float
Get_Detector_Threshold
(
void
)
{
return
dthreshold_
;
}
int
Get_Diffusivity_Type
(
void
)
{
return
diffusivity_
;
}
int
Get_Descriptor_Mode
(
void
)
{
return
descriptor_mode_
;
}
bool
Get_Upright
(
void
)
{
return
use_upright_
;
}
bool
Get_Extended
(
void
)
{
return
use_extended_
;
}
//float Get_Time_KContrast(void) {
// return tkcontrast_;
//}
//float Get_Time_NLScale(void) {
// return tnlscale_;
//}
//float Get_Time_Detector(void) {
// return tdetector_;
//}
//float Get_Time_Multiscale_Derivatives(void) {
// return tmderivatives_;
//}
//float Get_Time_Detector_Response(void) {
// return tdresponse_;
//}
//float Get_Time_Descriptor(void) {
// return tdescriptor_;
//}
//float Get_Time_Subpixel(void) {
// return tsubpixel_;
//}
};
//*************************************************************************************
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment