Hi Henning and David,

I did a minor changes in the code to solve this problem and now GIFT is able to index the 170,000 images and working perfectly fine :)

The changes are in this file merge_sort_streams.h (libGIFTAcInvertedFile/include/merge_sort_streams.h):

CStreamPos(long int inContent):mContent(inContent) changed to CStreamPos(long long int inContent):mContent(inContent)

operator long int()const changed to operator long long int()const

<< static_cast<long int>(i) changed to << static_cast<long long int>(i)


Regards,
Dayang

On Mon, 21 Aug 2006, Henning Müller wrote:

Hi,

it seems that the total number of extracted and stored features in the inverted file is too large in this case (seekg(-2147483632)). I have worked with databases of around 100'000 images and it worked perfectly fine.
I have no quick fix for this at the moment.

Cheers, Henning
_______________________________________________
help-GIFT mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gift

Reply via email to