I am developing an application called virtual wardrobe and for that application I need to know the size of the user .My question is how to obtain size of the user from edge detected image .I m using cvcanny for edge detection . I don't have much knowledge about emgu. Any suggestions . Thank you in advance
|
feedback
|
|
Well there are two avenues of thought here but first there are a few things that must be sorted out. Unless you are using 3D imaging there is no way you can achieve accurate size and even then it depends on resolution, you may want to look at the use of a Xbox Kinect for 3D data. If you are using one camera you need to know the specification and lens type before you can calculate real world size. This is so you can calculate the pixel per mm value. See my answer HERE for a detailed explanation of Homography and FOV calculation. If you know this you can draw an outline of the body and ask the person to stand to fit it before calculating size on expected values. This is of course only applicable if you want to take the the image of the user and match it to a real world size, so you want to tell them they need a size 10.12, 14 S M L XL etc... But drawing the clothing over a body is much easier well kind off. I reference examples within the EMGU Directory\EMGU.CV.Example\ folder. First you need to detect the body I would not recommend using edge detection for this while it can be done you would have to cycle through each contour and find the one that matches the body and then if you can match it draw the image of the clothing item. Take a look at "ShapeDetection" example as this uses counter matching for squares and triangles. A much quicker method would be the Haar classifier method, while this can't be adjusted to be as reliable it is much simpler to implement and considering your scope an acceptable solution. Take a look at the "FaceDetection" example for the code. Yes this one only detects the face but there are other haar classifiers that will detect the body these are located in EMGU Directory\opencv\data\haarcascades . You are looking for:
Get these running with a web camera and test them to see how they work. There are platy of examples on google but I would suggest piecing together the "CamerCapture" example and the "FaceDetection" example yourself to get a better understanding. If you get stuck ask here or at the EMGU forum and I'll help you out. Using the Haar classifier will will give us a ROI (Region of Interest) of which we know the full-body/top/bottom of the person is using this information we can scale the image of the clothing item down or up and place it in the relevant location of the ROI. As for overlaying the two images there are two real options. The first is to diplay the image in a new picturebox with the background of the image made transparent as with the background of the picturebox. This would only require you to adjust the position of the control and the contents but can be more complicated. It can be better execution wise as it won't take as long to display the image. Especially if your using HD images. The second easier option is simpler, it assumes that the background of the clothing is black or white. Loop through each pixel of the ROI where you are going to put the piece of clothing the associated value of the clothing is not black or white then replace the pixel in the captured image with the value of the clothing item. If you would like more information on accessing image data see my article HERE. There is a "PedestrianDetection" available as well which uses a Hog descriptor however this will require much more work it can be designed to detect a person more accurately than the Haar cascade method however it's execution time is usually worse. It may be an alternative if the Haar does not meet your requirments but I'm sure it will. I hope this sets you on your way if you need any more information or snippets of code let me know, Cheers, Chris The CODE:This code is quickly written up and hasn't been tested fully so if there's the odd bug let me know and I'll fix it. Ok so we will start with the camera capture this fairly straight forward, we create a new Capture variable depending on what device we wish to use. If there is more than one device then we can define is when finalise the creation of our capture device, _capture = new Capture(0); will use the first device In our case we will assume our camera is the default or only camera deice. The Form for reference is simply a picture box placed onto a form nice and simple. The Camera and it's capture...
The Application.Idle += ProcessFrame; adds a call to a method whenever we acquire a frame and our program is not doing anything this is the preferred method other using a timer as it allows a higher frame rate. So down to the processing code here we also declare globally our haarcascade as we use this so often we don't want to produce it each frame. An important note is that we make a copy of the frame we acquire this is not essential however ensures we don't have any problems if the garbage collector release the frame information while we are doing a large processing action. We also allocate memory for our frame as a global variable as we use it all the time we don't want to keep creating it. I have shown you the detection of the upper and lower body to show how two cascades can be applied. Haarcascades also only work on grayscale image so we create one to work with. Anyway This will draw the image according to where the upper body was detected.
Ok so that's the code you need to find the body, now we have to draw on object over our image this will need a more investigative application but I will give you a quick example on how to draw an image with a white background over the frame acquired. If you wish to draw the image using a new control then I'm afraid I haven't time to test the code required fully. If you get stuck please ask as there's more people who know c# than image analysis here.
Ok that's most of it hope it helps, Cheers, | |||||||||||
feedback
|