vote up 0 vote down star

hi

i want to paste an image to a captured video frame on the coordinates which i determined

i asked that before and i have been told to use cvCopy and cvSetImageROI but i dont want to crop on those coordinates i want to add another image maybe its the right way but i didnt understand it (if its right pls explain it)

thank for suggestions

flag

44% accept rate

1 Answer

vote up 0 vote down

You will have to copy pixel by pixel from the source to the destination. The code below does precisely that, offseting with coordinates x and y. I haven't actually tried this, but am fairly certain it should work more or less as you'd expect.

Just make sure the target image is at least the size of the source plus the offset!

void drawImage(IplImage* target, IplImage* source, int x, int y) {
    for (int ix=0; x<source->width; x++) {
        for (int iy=0; y<source->height; y++) {
            int r = source->imageData[ix*3 + source->width * (source->height - iy - 1)*3 + 2];
            int g = source->imageData[ix*3 + source->width * (source->height - iy - 1)*3 + 1];
            int b = source->imageData[ix*3 + source->width * (source->height - iy - 1)*3 + 0];
            target->imageData[(ix+x)*3 + source->width * (source->height - iy + y - 1)*3 + 2] = r;
            target->imageData[(ix+x)*3 + source->width * (source->height - iy + y - 1)*3 + 1] = g;
            target->imageData[(ix+x)*3 + source->width * (source->height - iy + y - 1)*3 + 0] = b;
        }
    }
}
link|flag
thanks but i want to combine all of the source to x,y pixels of the target i think i must add 2 for loops to your code the for loops in your code will get the r,g,b values of the source and the other 2 i will add will change the targets rgb is it correct – eomer Oct 19 at 10:53
The above code will cycle through all the pixels of the source image and copy them one by one to an offset position on the target image. There is no need for any additional loops unless you intend to copy multiple `IplImage`s onto the target. – Paul Lammertsma Oct 19 at 14:50
ok i undertand your code thanks i already have a loop for multiple image i think you didnt understand me i want to do exactly opposite of your code what i want to do is replace a part of my source image with another image – eomer Oct 20 at 6:06
Simply swap the `IplImage`s in the parameters to accomplish that. In essence what you need to do, is take the captured video as target, an image you want to overlay as source, and specify the x and y offset where you want the image placed on the video. Since the target video is passed with a pointer, you can then proceed to process the captured video frame after calling drawImage(). – Paul Lammertsma Oct 20 at 10:13
paul i just use your code before your last comment i replace targets and sources with each other in the code however the image i want to put is put but on another coordinates and lenghten widely i want to put it on my eye detection program i put a black image to eyes but instead of eyes it appeared on the forhead if you want i can sen you the code – eomer Oct 20 at 11:41

Your Answer

Get an OpenID
or

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