2#include <visp3/core/vpConfig.h>
3#include <visp3/gui/vpDisplayFactory.h>
4#include <visp3/io/vpImageIo.h>
5#include <visp3/robot/vpImageSimulator.h>
6#include <visp3/robot/vpSimulatorCamera.h>
7#include <visp3/visual_features/vpFeatureBuilder.h>
8#include <visp3/vs/vpServo.h>
9#include <visp3/vs/vpServoDisplay.h>
11#ifdef ENABLE_VISP_NAMESPACE
32 for (
int i = 0; i < 4; i++)
53 sim_.init(target_, X_);
66 sim_.setCleanPreviousImage(
true);
67 sim_.setCameraPosition(cMo);
68 sim_.getImage(I, cam_);
80 VP_ATTRIBUTE_NO_DESTROY
static std::vector<vpImagePoint> traj[4];
81 for (
unsigned int i = 0;
i < 4;
i++) {
82 traj[
i].push_back(dot[i].getCog());
84 for (
unsigned int i = 0;
i < 4;
i++) {
85 for (
unsigned int j = 1;
j < traj[
i].size();
j++) {
93#if defined(VISP_HAVE_DISPLAY)
94#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
95 std::shared_ptr<vpDisplay> display;
106 std::vector<vpPoint> point;
107 point.push_back(
vpPoint(-0.1, -0.1, 0));
108 point.push_back(
vpPoint(0.1, -0.1, 0));
109 point.push_back(
vpPoint(0.1, 0.1, 0));
110 point.push_back(
vpPoint(-0.1, 0.1, 0));
120#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
132 std::vector<vpDot2> dot(4);
134 for (
unsigned int i = 0;
i < 4;
i++) {
135 point[
i].track(cdMo);
138 dot[
i].setGraphics(
true);
139 dot[
i].initTracking(I);
143 task.addFeature(p[i], pd[i]);
149 robot.getPosition(wMc);
153 robot.getPosition(wMc);
160 for (
unsigned int i = 0;
i < 4;
i++) {
165 point[
i].changeFrame(cMo, cP);
171 display_trajectory(I, dot);
183 std::cout <<
"Catch an exception: " <<
e << std::endl;
185#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
186 if (display !=
nullptr) {
Generic class defining intrinsic camera parameters.
Implementation of column vector and the associated operations.
static const vpColor green
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 displayLine(const vpImage< unsigned char > &I, const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color, unsigned int thickness=1, bool segment=true)
static void flush(const vpImage< unsigned char > &I)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
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...
Implementation of an homogeneous matrix and operations on such kind of matrices.
vpHomogeneousMatrix inverse() const
static void read(vpImage< unsigned char > &I, const std::string &filename, int backend=IO_DEFAULT_BACKEND)
Class which enables to project an image in the 3D space and get the view of a virtual camera.
Definition of the vpImage class member functions.
static double rad(double deg)
Class that defines a 3D point in the object frame and allows forward projection of a 3D point in the ...
virtual void setSamplingTime(const double &delta_t)
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)
Class that defines the simplest robot: a free flying camera.
vpVirtualGrabber(const std::string &filename, const vpCameraParameters &cam)
void acquire(vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo)
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.
VISP_EXPORT int wait(double t0, double t)