//***************************************************************************
#ifndef GABOR_H
#define GABOR_H
//***************************************************************************
#include "matrix.h"
//***************************************************************************
void GaborFilteredImg(Matrix **FilteredImg_real, Matrix **FilteredImg_imag,
        Matrix &img, int side, double Ul, double Uh, 
        int scale, int orientation, int flag);
void Gabor(Matrix *Gr, Matrix *Gi, int s, int n, double Ul, double Uh, 
        int scale, int orientation, int flag);
//***************************************************************************
#endif // GABOR_H
//***************************************************************************