KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
combine_scales.h
Go to the documentation of this file.
1 // combine_scales.h - combine several scales into one
3 // Author: Doron Tal
4 // Date Created: June, 2000
5 
6 #ifndef _COMBINE_SCALES_H
7 #define _COMBINE_SCALES_H
8 
9 #include "wrap_dtlib_cpp/img.h"
10 
11 namespace DTLib {
12 
13  // fill up RhoImg and ThetaImg with max from all scales, combining scales
14  void CombineScalesNMSRhoTheta(const int& nGaussScales,
15  CImgVec<BYTE>& InNMSVec,
16  CImgVec<float>& InEnergyVec,
17  CImgVec<float>& InOriVec,
18  CImg<BYTE>& OutNMSCombImg,
19  CImg<float>& OutEnergyCombImg,
20  CImg<float>& OutOriCombImg);
21 
22 } // namespace DTLib {
23 
24 #endif /* #ifndef _COMBINE_SCALES_H */
void CombineScalesNMSRhoTheta(const int &nGaussScales, CImgVec< BYTE > &InNMSVec, CImgVec< float > &InEnergyVec, CImgVec< float > &InOriVec, CImg< BYTE > &OutNMSCombImg, CImg< float > &OutEnergyCombImg, CImg< float > &OutOriCombImg)
Definition: combine_scales.cpp:14