Quote:
Originally Posted by byteit101
You can also use PCVideoServer (you'll need to include a file, I think its "Vision\PCVideoServer.h")
Code:
class robotclass : ....
{
...
PCVideoServer pcvs;
public:
robotclass:
.....
,pcvs()
{
...
}
......
}
|
A quick note on PCVideoServer:
My team found out the hard way that the camera, when initialized with GetInstance(), starts its own PCVideoServer. Attempting to start a second one blocks the entire thread indefinitely.