Tagged Questions
3
votes
2answers
544 views
Floodfill in objective c
HI,
I am trying for a coloring app and to figure out floddfill in objective c anybody did this before..???I am reading all pixel data in a picture and i can change it also..but floodfill can only do ...
1
vote
1answer
389 views
Flood Filling in iPad too SLOW
I am using Flood Filling for one of my Coloring app on iPad.
The app basically fills color within the black line of the image and i am able to do this with no problem , but its too slow.
Conclusion:
...
1
vote
2answers
1k views
Fill a touch drawn path of CGPoints using OpenGL or CoreGraphics
I have a NSArray of points that make up a path. I can detect when it self-intersects. When this happens, I try to fill the path.
First I used CoreGraphics, now I'm using openGl to draw a triangle ...
0
votes
0answers
23 views
Flood fill Crash
I have been trying to get a simple Flood Fill Algorithm working for an iPhone app that I am developing and I just can't get it working correctly.
I have got the actual process to work great however ...
0
votes
0answers
179 views
Setting color to part of UIView or ImageView
I am trying for a coloring app and Is there any way to set color to a particular part of a UIView or UIImageView.I checked the Quatrs class to do this .A sample image i want to work with is given ...
0
votes
2answers
1k views
Most efficient way to draw individual pixels in OpenGL ES (Cocos2d-iphone)
I'm writing a flood-fill algorithm...it needs to paint individual pixels. What's the fastest way to do this? At first I thought of using cocos2d's drawpoint, but having 320 * 480 vertices doesn't ...