#include <sdet_harris_detector.h>
Inheritance diagram for sdet_harris_detector:

Definition at line 43 of file sdet_harris_detector.h.
Public Member Functions | |
| sdet_harris_detector (sdet_harris_detector_params &rpp) | |
| constructor from a parameter block (the only way). | |
| ~sdet_harris_detector () | |
| Default Destructor. | |
| void | set_image (vil1_image const &image) |
| Set the image to be processed. | |
| void | set_image_resource (vil_image_resource_sptr const &image) |
| Set the image resource to be processed. | |
| vcl_vector< vsol_point_2d_sptr > & | get_points () |
| void | extract_corners () |
| extract a set of vsol_point_2d(s). | |
| void | clear () |
| Clear internal storage. | |
| bool | SanityCheck () |
| Checks that parameters are within acceptable bounds. | |
Public Attributes | |
| float | sigma_ |
| sigma of the Gaussian smoothing kernel | |
| float | thresh_ |
| threshold for weak corners | |
| int | n_ |
| size of the gradient matrix neighorhood (2n+1)x(2n+1) | |
| float | percent_corners_ |
| maximum of corners as a percent of total | |
| float | scale_factor_ |
| Harris trace weight. | |
| bool | use_vil_harris_ |
| use vil/algo/vil_corners for strength | |
Protected Member Functions | |
| bool | extract_corners_vil1 (vcl_vector< float > &x_pos, vcl_vector< float > &y_pos, vcl_vector< float > &val) |
| bool | extract_corners_vil (vcl_vector< float > &x_pos, vcl_vector< float > &y_pos, vcl_vector< float > &val) |
| void | InitParams (float sigma, float thresh, int n, float percent_corners, float scale_factor, bool use_vil_harris) |
Protected Attributes | |
| bool | points_valid_ |
| bool | use_vil_image_ |
| vil1_image | image_ |
| vil_image_resource_sptr | vimage_ |
| vcl_vector< vsol_point_2d_sptr > | points_ |
Friends | |
| vcl_ostream & | operator<< (vcl_ostream &, const sdet_harris_detector_params &dp) |
|
|
constructor from a parameter block (the only way).
Definition at line 46 of file sdet_harris_detector.cxx. |
|
|
Default Destructor.
Definition at line 56 of file sdet_harris_detector.cxx. |
|
|
Clear internal storage.
Definition at line 201 of file sdet_harris_detector.cxx. |
|
|
extract a set of vsol_point_2d(s).
Definition at line 155 of file sdet_harris_detector.cxx. |
|
||||||||||||||||
|
Definition at line 119 of file sdet_harris_detector.cxx. |
|
||||||||||||||||
|
Definition at line 92 of file sdet_harris_detector.cxx. |
|
|
Definition at line 54 of file sdet_harris_detector.h. |
|
||||||||||||||||||||||||||||
|
Definition at line 39 of file sdet_harris_detector_params.cxx. |
|
|
Checks that parameters are within acceptable bounds. Note that msg << ends seems to restart the string and erase the previous string. We should only use it as the last call, use vcl_endl otherwise. Definition at line 61 of file sdet_harris_detector_params.cxx. |
|
|
Set the image to be processed.
Definition at line 63 of file sdet_harris_detector.cxx. |
|
|
Set the image resource to be processed.
Definition at line 78 of file sdet_harris_detector.cxx. |
|
||||||||||||
|
Definition at line 97 of file sdet_harris_detector_params.cxx. |
|
|
Definition at line 72 of file sdet_harris_detector.h. |
|
|
size of the gradient matrix neighorhood (2n+1)x(2n+1)
Definition at line 44 of file sdet_harris_detector_params.h. |
|
|
maximum of corners as a percent of total
Definition at line 45 of file sdet_harris_detector_params.h. |
|
|
Definition at line 74 of file sdet_harris_detector.h. |
|
|
Definition at line 70 of file sdet_harris_detector.h. |
|
|
Harris trace weight.
Definition at line 46 of file sdet_harris_detector_params.h. |
|
|
sigma of the Gaussian smoothing kernel
Definition at line 42 of file sdet_harris_detector_params.h. |
|
|
threshold for weak corners
Definition at line 43 of file sdet_harris_detector_params.h. |
|
|
use vil/algo/vil_corners for strength
Definition at line 47 of file sdet_harris_detector_params.h. |
|
|
Definition at line 71 of file sdet_harris_detector.h. |
|
|
Definition at line 73 of file sdet_harris_detector.h. |
1.4.4