55#include <visp3/core/vpConfig.h>
56#include <visp3/core/vpDebug.h>
57#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__)))
62#if defined(VISP_HAVE_PTU46) && defined(VISP_HAVE_DC1394) && defined(VISP_HAVE_THREADS)
66#include <visp3/core/vpDisplay.h>
67#include <visp3/core/vpImage.h>
68#include <visp3/gui/vpDisplayFactory.h>
69#include <visp3/sensor/vp1394TwoGrabber.h>
71#include <visp3/core/vpHomogeneousMatrix.h>
72#include <visp3/core/vpMath.h>
73#include <visp3/core/vpPoint.h>
74#include <visp3/visual_features/vpFeatureBuilder.h>
75#include <visp3/visual_features/vpFeaturePoint.h>
76#include <visp3/vs/vpServo.h>
78#include <visp3/robot/vpRobotPtu46.h>
81#include <visp3/core/vpException.h>
82#include <visp3/vs/vpServoDisplay.h>
84#include <visp3/blob/vpDot2.h>
86std::mutex mutexEndLoop;
88void signalCtrC(
int signumber)
91 mutexEndLoop.unlock();
98#ifdef ENABLE_VISP_NAMESPACE
102 std::cout << std::endl;
103 std::cout <<
"-------------------------------------------------------" << std::endl;
104 std::cout <<
" Test program for vpServo " << std::endl;
105 std::cout <<
" Eye-in-hand task control, velocity computed in the camera frame" << std::endl;
106 std::cout <<
" Simulation " << std::endl;
107 std::cout <<
" task : servo a point " << std::endl;
108 std::cout <<
"-------------------------------------------------------" << std::endl;
109 std::cout << std::endl;
111#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
112 std::shared_ptr<vpDisplay> display;
118 signal(SIGINT, &signalCtrC);
142#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
155#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
156 if (display !=
nullptr) {
179#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
180 if (display !=
nullptr) {
189 vpTRACE(
"sets the current position of the visual feature ");
194 vpTRACE(
"sets the desired position of the visual feature ");
199 vpTRACE(
"\t we want an eye-in-hand control law");
200 vpTRACE(
"\t articular velocity are computed");
204 vpTRACE(
"Set the position of the end-effector frame in the camera frame");
210 std::cout << cVe << std::endl;
214 vpTRACE(
"Set the Jacobian (expressed in the end-effector frame)");
219 vpTRACE(
"\t we want to see a point on a point..");
220 std::cout << std::endl;
221 task.addFeature(p, pd);
226 vpTRACE(
"Display task information ");
231 unsigned int iter = 0;
233 while (0 != mutexEndLoop.trylock()) {
234 std::cout <<
"---------------------------------------------" <<
iter << std::endl;
250 v =
task.computeControlLaw();
257 vpTRACE(
"\t\t || s - s* || = %f ", (
task.getError()).sumSquare());
260 vpTRACE(
"Display task information ");
264 std::cout <<
"Sorry PtU46 not available. Got exception: " <<
e << std::endl;
265#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
266 if (display !=
nullptr) {
272#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
273 if (display !=
nullptr) {
281int main() { std::cout <<
"You do not have an PTU46 PT robot connected to your computer..." << std::endl; }
Class for firewire ieee1394 video devices using libdc1394-2.x api.
void acquire(vpImage< unsigned char > &I)
void open(vpImage< unsigned char > &I)
Generic class defining intrinsic camera parameters.
Implementation of column vector and the associated operations.
Class that defines generic functionalities for display.
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void display(const vpImage< unsigned char > &I)
static void flush(const vpImage< unsigned char > &I)
This tracker is meant to track a blob (connex pixels with same gray level) on a vpImage.
void track(const vpImage< unsigned char > &I, bool canMakeTheWindowGrow=true)
void setCog(const vpImagePoint &ip)
error that can be emitted by ViSP classes.
static void create(vpFeaturePoint &s, const vpCameraParameters &cam, const vpDot &d)
Class that defines a 2D point visual feature which is composed by two parameters that are the cartes...
vpFeaturePoint & buildFrom(const double &x, const double &y, const double &Z)
Implementation of an homogeneous matrix and operations on such kind of matrices.
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
Definition of the vpImage class member functions.
Implementation of a matrix and operations on matrices.
Interface for the Directed Perception ptu-46 pan, tilt head .
@ STATE_POSITION_CONTROL
Initialize the position controller.
@ STATE_VELOCITY_CONTROL
Initialize the velocity controller.
static void display(const vpServo &s, const vpCameraParameters &cam, const vpImage< unsigned char > &I, vpColor currentColor=vpColor::green, vpColor desiredColor=vpColor::red, unsigned int thickness=1)
std::shared_ptr< vpDisplay > createDisplay()
Return a smart pointer vpDisplay specialization if a GUI library is available or nullptr otherwise.
vpDisplay * allocateDisplay()
Return a newly allocated vpDisplay specialization if a GUI library is available or nullptr otherwise.