Click here to Skip to main content
15,898,134 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am trying to display the captured image on another picturebox in cmos usb 2-thorlab cameras using "cam.DisplayImage.Set(s32MemId, s32DisplayHandle, s32Mode)" but Idont know how to use this.my image is displayed only where the streaming is going on.

What I have tried:

I AM able to capture the image in the same picturebox where streaming is going on
Posted
Updated 15-Feb-16 23:47pm
v5

1 solution

C#
ScreenCapture sc = new ScreenCapture();
// capture entire screen, and save it to a file
Image img = sc.CaptureScreen();
// display image in a Picture control named imageDisplay
this.imageDisplay.Image = img;
// capture this window, and save it
sc.CaptureWindowToFile(this.Handle,"C:\\temp2.gif",ImageFormat.Gif);



for more information visite
Capture a Screen Shot - C# sample code - developer Fusion[^]
 
Share this answer
 

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