KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
subpix_localize.h
Go to the documentation of this file.
1 // subpix_localize.h - sub-pixel localization of edges
3 // Author: Doron Tal
4 // Date created: April, 2000
5 
6 #ifndef _SUBPIX_LOCALIZE_H
7 #define _SUBPIX_LOCALIZE_H
8 
9 #include "wrap_dtlib_cpp/img.h"
10 
11 namespace DTLib {
12 
13  // *** TODO: *** need comment
14  void SubpixelLocalization(const int& nGaussScales,
15  const int& nGaussOrientations,
16  CImgVec<float>& OESeq,
17  CImgVec<BYTE>& ThetaIdxSeq,
18  CImgVec<BYTE>& MaximaSeq,
19  CImgVec<float>& RhoStarSeq,
20  CImgVec<float>& ThetaSeq,
21  CImgVec<float>& XLocSeq,
22  CImgVec<float>& YLocSeq,
23  CImgVec<float>& ErrSeq);
24 
25 } // namespace DTLib {
26 
27 #endif /* #ifndef _SUBPIX_LOCALIZE_H */
void SubpixelLocalization(const int &nGaussScales, const int &nGaussOrientations, CImgVec< float > &OESeq, CImgVec< BYTE > &ThetaIdxSeq, CImgVec< BYTE > &MaximaSeq, CImgVec< float > &RhoStarSeq, CImgVec< float > &ThetaSeq, CImgVec< float > &XLocSeq, CImgVec< float > &YLocSeq, CImgVec< float > &ErrSeq)
Definition: subpix_localize.cpp:15