Tagged Questions

3
votes
2answers
543 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 ...
2
votes
1answer
675 views

FloodFill in iphone

I'm very new to iphone development.I want to create a application using FloodFill algorithm in iphone.I'm not having any idea of FloodFill.Please Explain me the purpose of FloodFill algorithm.If you ...
1
vote
1answer
386 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
0answers
311 views

FloodFill iphone implementation.How to do this?

I'm going to developing an application for coloring the image.For that floodfill algorithm is used.I don't know how to implement the floodfill algorithm in iphone.I want to do the same way as ...
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
53 views

iPhone paint bucket

I am working on implementing a flood-fill paint-bucket tool in an iPhone app and am having some trouble with it. The user is able to draw and I would like the paint bucket to allow them to tap a spot ...
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

How to Implement FloodFill Algorithm in iphone

I want to implement floodfill algorithm in iphone.What are the methods are used to implement the floodfill algorithm in iphone.Please any one guide me in this regard. If i want to include any of the ...
0
votes
1answer
313 views

iphone - Filling color in closed image

I'm trying to create an app for children. It will have different images. And those images will have different closed shapes like stars, balls or any other similar images. I am aware of how to draw on ...
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 ...