I need efficient fill algorithm to fill closed polygons (like ex. Scanline fill), which I can run on CUDA. Have you got any suggestions?

Thanks in advance for any replays!

link|improve this question

33% accept rate
What do you mean by efficient? What ratio close to the performance of GPU HW rasterizers? Should the algorithm be fully general purpose/ VS specialized for small triangles etc. Be precise! – Stringer Nov 9 '10 at 12:32
Thanks for answer. Here's what I need to do: I've got a scene of a few cuboids (some of them overlapping). I need to render them on a plane and fill them inside as fast as possible - that's why I thought about CUDA. I'd appreciate any suggestions! – MattheW Nov 9 '10 at 14:18
1  
It might be better to put your geometry in a Vertex Buffer Object and rasterize it with OpenGL instead. – tkerwin Nov 27 '10 at 5:33
feedback

1 Answer

Thrust has a really good scanning algorithm, but only along single line. You may need to extend it a bit to work with images. Assuming edges are 1 and 0 everywhere else, all you need to do is perform a prefix sum on the image. Once the prefix sum is complete, all you need to do is fill the areas where the sum is Odd.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.