I would like to add a smaller image on top of a larger image (eventually for PiP on a video feed). I can do it by iterating through the relevant data property in the large image and add the pixels from the small image. But is there a simpler and neater way? I'm using EMGU.

My idea was to define an ROI in the large image of the same size as the small image. Set the Large image equal to the small image and then simply remove the ROI. Ie in pseudo code,

Large.ROI = rectangle defined by small image;

Large = Small;

Large.ROI = Rectangle.Empty;

However this doesn't work and the large image doesn't change. Any suggestions would be much appreciated.

Since I'm a new user I can't add images to the post but see the links below:

http://i.stack.imgur.com/NbI7o.png http://i.stack.imgur.com/PLKUI.png http://i.stack.imgur.com/hdKi4.png

Thanks

link|improve this question
Are you using c or python? How exactly are you doing the Large=Small assignment? Since you say it doesn´t work, you probably have some code, so it would be nice if you posted that too. – Jong Bor Jun 16 '11 at 21:35
since he's tagged it "emgu", it's probably emgucv. I wish the emgucv people would stop tagging/calling it opencv ... – etarion Jun 16 '11 at 21:43
Didn't notice the bit about EMGU, so it's not a choice between c and python. But the question still stands: which language are you using? – Jong Bor Jun 16 '11 at 21:45
feedback

1 Answer

I have a lot of experience with EMGU. As far as I am aware the method your employing is the only direct way of display the sub-image data within your large image. You would likely have to refresh your larger image which would have the inherent effect of wiping your transferred data and copy the smaller image back over.

While a solution is possible I think the method is flawed. The required processing time will effect the display rate of any image in the larger viewing frame.

An improved method would be to add another control. Effectively you have your video feed window showing your larger image in the background and a smaller control on-top of this displaying your smaller image. Effectively you could have as many of these smaller controls as you like. You will in effect be displaying two images or video feeds in two different controls (e.g. image boxes). As you have the code to do so all you will have to do is ensure the order of which your controls are displayed.

I have assumed you are not programming the output to a Console Window. If you need any more help please feel free to ask.

As for the comments EMGU is written in C# and while appreciate your view on not calling EMGU OpenCV why should it not be tagged as an OpenCV orientated question. After all EMGU is simply OpenCV library with a c# wrapper. I have found many resources on OpenCV useful for EMGU and vice versa.

Cheers Chris

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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