Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
767 views

How many hash functions does my bloom filter need?

Wikipedia says: An empty Bloom filter is a bit array of m bits, all set to 0. There must also be k different hash functions defined, each of which maps or hashes some set element to one of the m ...
0
votes
2answers
50 views

Bloom Filter: How to find k hash functions?

A Bloom Filter needs k hash functions, which return a value between 0 and m (m is the length of the bit array). I have to implement such a bloom filter and I already read some theoretical papers about ...
0
votes
1answer
516 views

XNA Bloom Sample - Blank purple screen

I have placed the two bloom classes into my project from the Bloom sample and followed the same steps as the sample, although when I start the project, all I am getting now is a blank purple screen? ...
0
votes
1answer
909 views

OpenGL - Copy texture from screen smaller than that screen

I'm trying to capture the screen to a texture with a lower resolution than the screen itself (to render back onto the screen and create a blur/bloom effect), and it doesn't work quite well. I ...