1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

use long seeds only for 64 bit systems

This commit is contained in:
marina.kolpakova
2013-01-24 11:45:22 +04:00
parent 5f082b9876
commit decb137185
2 changed files with 22 additions and 2 deletions
+11 -1
View File
@@ -76,7 +76,17 @@ void sft::write(cv::FileStorage& fs, const string&, const ICF& f)
sft::ICFFeaturePool::~ICFFeaturePool(){}
#define USE_LONG_SEEDS
#if defined _WIN32 && (_WIN32 || _WIN64)
# if _WIN64
# define USE_LONG_SEEDS
# endif
#endif
#if defined (__GNUC__) &&__GNUC__
# if defined(__x86_64__) || defined(__ppc64__)
# define USE_LONG_SEEDS
# endif
#endif
#if defined USE_LONG_SEEDS
# define FEATURE_RECT_SEED 8854342234LU
#else