Click here to Skip to main content
15,886,840 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to overlap all the frames(i.e. In Raw format) by the distance of one line we will get the exact object image as shown in link.
http://www.4shared.com/photo/Wu_-v0k4/untitled.html[^]
Overlapping all the captured frames we will get final image as shown in link.
http://www.4shared.com/photo/-Zu5uC53/Final_Image.html[^]

How It can be possible in c#...

[edit]Links converted to a proper links, "Treat my content as plain text..." option disabled - OriginalGriff[/edit]
Posted
Updated 31-Oct-11 22:08pm
v2

1 solution

That's a little obvious, isn't it? Or am I missing something?

Load each frame into an Image (use the Image.FromFile[^] method), then handle the Paint event of a panel or form, and use the Graphics.DrawImage[^] method (with the supplied Graphics object) to paint each image on the screen in order, remembering to offet the X start address by the appropriate amount.
 
Share this answer
 
Comments
BobJanova 1-Nov-11 6:52am    
That looks right to me ... I wonder if there is some subtlety not included in the question.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900