00001
00002
00003
00004
00005
00006
00007 #ifndef RTRSDETECTLE_H
00008 #define RTRSDETECTLE_H
00009
00010 void rtrsdetectle(
00011 const int& Msize,
00012 const int& mmax,
00013 const int& mrastep,
00014 const float* mracoef,
00015 const float* mracoefrs,
00016 const float* thresh,
00017 int* hit
00018 );
00019
00020 void rtrsdetectle(
00021 const int& Msize,
00022 const int& mmax,
00023 const int& mrastep,
00024 const double* mracoef,
00025 const double* mracoefrs,
00026 const double* thresh,
00027 int* hit
00028 );
00029
00030 void rtrsdetectle(
00031 const int& Msize,
00032 const int& mmax,
00033 const int& mrastep,
00034 const int* mracoef,
00035 const int* mracoefrs,
00036 const int* thresh,
00037 int* hit
00038 );
00039
00040 void rtrsdetectle(
00041 const int& Asize,
00042 const int& Msize,
00043 const int& amax,
00044 const int& mmax,
00045 const int& mrastep,
00046 const float* mracoef,
00047 const float* mracoefrs,
00048 const float* thresh,
00049 int* hit
00050 );
00051
00052 void rtrsdetectle(
00053 const int& Asize,
00054 const int& Msize,
00055 const int& amax,
00056 const int& mmax,
00057 const int& mrastep,
00058 const double* mracoef,
00059 const double* mracoefrs,
00060 const double* thresh,
00061 int* hit
00062 );
00063
00064 void rtrsdetectle(
00065 const int& Asize,
00066 const int& Msize,
00067 const int& amax,
00068 const int& mmax,
00069 const int& mrastep,
00070 const int* mracoef,
00071 const int* mracoefrs,
00072 const int* thresh,
00073 int* hit
00074 );
00075
00076 #endif
00077