Harris Laplace and Harris Affine functions (Feature #879)
Description
Patch for Harris-Laplace detectors, affine adaptation of keypoints and affine covariant descriptors.
Please contact me for any issue or bug.
Associated revisions
Merge pull request #879 from apavlenko:gcc-4.8
History
Updated by Delia Passalacqua almost 14 years ago
- Status changed from Open to Done
- (deleted custom field) set to duplicate
Updated by caszzs - over 13 years ago
Replying to deliailed:
Patch for Harris-Laplace detectors, affine adaptation of keypoints and affine covariant descriptors.
Please contact me for any issue or bug.
Could you please send me the implementation of the Harris-Laplace detector class? When
I compiled the Harris-Affine detector, it said that no implementation of HarrisLaplace.
Thanks.
Updated by Delia Passalacqua over 13 years ago
This ticket is duplicated, please see ticket #1053.
Replying to [comment:2 caszzs]:
Replying to deliailed:
Patch for Harris-Laplace detectors, affine adaptation of keypoints and affine covariant descriptors.
Please contact me for any issue or bug.
Could you please send me the implementation of the Harris-Laplace detector class? When
I compiled the Harris-Affine detector, it said that no implementation of HarrisLaplace.Thanks.
Updated by whitecollar - about 13 years ago
Replying to [comment:3 deliailed]:
This ticket is duplicated, please see ticket #1053.
Replying to [comment:2 caszzs]:
Replying to deliailed:
Patch for Harris-Laplace detectors, affine adaptation of keypoints and affine covariant descriptors.
Please contact me for any issue or bug.
Could you please send me the implementation of the Harris-Laplace detector class? When
I compiled the Harris-Affine detector, it said that no implementation of HarrisLaplace.Thanks.
The features2d.diff patch does not provide HarrisLaplace class implementation. I am having the same problem. I don't think this is a duplicate of #1053, which is about missing gaussian_pyramid.hpp .
- Status changed from Done to Cancelled
- (deleted custom field) deleted (
duplicate)
Updated by Delia Passalacqua about 13 years ago
Ticket #1053 is an update of this ticket and that depends on #820. You can find Harris-Laplace detector in that patch.
- Status changed from Cancelled to Done
- (deleted custom field) set to invalid
Updated by caszzs - about 13 years ago
Replying to [comment:5 deliailed]:
Ticket #1053 is an update of this ticket and that depends on #820. You can find Harris-Laplace detector in that patch.
Thanks very much!
Yes.I can find Harris-Laplace detector in the Ticket #1053, but the detector depends on HarrisLaplace class, of which I couldn't find the implementation.
class CV_EXPORTS HarrisLaplaceFeatureDetector : public FeatureDetector
{
public:
class CV_EXPORTS Params
{
public:
Params( int numOctaves=6, float corn_thresh=0.01, float DOG_thresh=0.01, int maxCorners=5000, int num_layers=4 );
int numOctaves;
float corn_thresh;
float DOG_thresh;
int maxCorners;
int num_layers;
};
HarrisLaplaceFeatureDetector( const [[HarrisLaplaceFeatureDetector]]::Params& params=HarrisLaplaceFeatureDetector::Params() );
HarrisLaplaceFeatureDetector( int numOctaves, float corn_thresh, float DOG_thresh, int maxCorners, int num_layers);
virtual void read( const [[FileNode]]& fn );
virtual void write( [[FileStorage]]& fs ) const;
protected:
virtual void detectImpl( const Mat& image, vector<KeyPoint>& keypoints, const Mat& mask=Mat() ) const;
HarrisLaplace harris; ;here
Params params;
};
Updated by Delia Passalacqua about 13 years ago
Sorry, you were right. I've added HarrisLaplace implementation in ticket #1053.
Updated by Andrey Kamaev almost 13 years ago
- Status changed from Done to Cancelled