i need a code in c# which can extract a specified color (for example red )then clip the object which contain that color? that is mean searching for red object then cilp it
|
closed as not a real question by Grant Thomas, Antonio Bakula, C.Evenhuis, Greg Bacon, Joe Apr 25 '12 at 2:30
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
The code you are looking for is not as simple as I think you think it is. Object detection in images is difficult as you need to algorithms to determine edges, in addition to your need to detect color. I would look towards a 3rd party library rather than rewriting it yourself. Or you can use the library to detect the objects in your image, then look for the color you want. I've never had a need to do this level of image processing in .Net, but here's a couple of examples I found in some quick google and SO searching. Take a look an see if any suit your needs. |
|||||
|