本文整理汇总了C++中ArVCC4::getPanSlew方法的典型用法代码示例。如果您正苦于以下问题:C++ ArVCC4::getPanSlew方法的具体用法?C++ ArVCC4::getPanSlew怎么用?C++ ArVCC4::getPanSlew使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ArVCC4
的用法示例。
在下文中一共展示了ArVCC4::getPanSlew方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: minus
void KeyPTU::minus(void)
{
myPTU.panSlew(myPTU.getPanSlew() - mySlewIncrement);
myPTU.tiltSlew(myPTU.getTiltSlew() - mySlewIncrement);
status();
}
示例2: drive
// the important function
void KeyPTU::drive(void)
{
// if the PTU isn't initialized, initialize it here... it has to be
// done here instead of above because it needs to be done when the
// robot is connected
if (!myPTUInitRequested && !myPTU.isInitted() && myRobot->isConnected())
{
printf("\nWaiting for Camera to Initialize\n");
myAbsolute = true;
myPTUInitRequested = true;
myPTU.init();
}
// if the camera hasn't initialized yet, then just return
if (myPTUInitRequested && !myPTU.isInitted())
{
return;
}
if (myPTUInitRequested && myPTU.isInitted())
{
myPTUInitRequested = false;
myPanSlew = myPTU.getPanSlew();
myTiltSlew = myPTU.getTiltSlew();
printf("Done.\n");
question();
}
if (myExerciseTime.secSince() > 5 && myExercise)
{
int pan,tilt;
if (ArMath::random()%2)
pan = ArMath::random()%((int)myPTU.getMaxPosPan());
else
pan = -ArMath::random()%((int)myPTU.getMaxNegPan());
if (ArMath::random()%2)
tilt = ArMath::random()%((int)myPTU.getMaxPosTilt());
else
tilt = -ArMath::random()%((int)myPTU.getMaxNegTilt());
myPTU.panTilt(pan, tilt);
//printf("** %d\n", myRobot->getEstop());
//printf("--> %x\n", myRobot->getFlags());
myExerciseTime.setToNow();
}
}
示例3: status
void KeyPTU::status(void)
{
ArLog::log(ArLog::Normal, "\r\nStatus:\r\n_________________________\r\n");
ArLog::log(ArLog::Normal, "Pan Position = %d deg", myPTU.getPan());
ArLog::log(ArLog::Normal, "Tilt Position = %d deg", myPTU.getTilt());
ArLog::log(ArLog::Normal, "Zoom Position = %d", myPTU.getZoom());
ArLog::log(ArLog::Normal, "Pan Slew = %d deg/s", myPTU.getPanSlew());
ArLog::log(ArLog::Normal, "Tilt Slew = %d deg/s", myPTU.getTiltSlew());
ArLog::log(ArLog::Normal, "Position Increment = %d deg", myPosIncrement);
if (myPTU.getPower())
ArLog::log(ArLog::Normal, "Power is ON");
else
ArLog::log(ArLog::Normal, "Power is OFF");
ArLog::log(ArLog::Normal, "\r\n");
}