Visual Servoing Platform version 3.7.0
Loading...
Searching...
No Matches
tutorial-draw-frame.cpp
#include <visp3/core/vpConfig.h>
#include <visp3/gui/vpDisplayFactory.h>
#include <visp3/core/vpHomogeneousMatrix.h>
#ifdef ENABLE_VISP_NAMESPACE
using namespace VISP_NAMESPACE_NAME;
#endif
int main()
{
#if defined(VISP_HAVE_DISPLAY)
vpImage<unsigned char> I(2160, 3840, 128);
// Initialize the display with the image I. Display and image are now linked together
#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
std::shared_ptr<vpDisplay> d = vpDisplayFactory::createDisplay(I, -1, -1, "Frame drawing", vpDisplay::SCALE_AUTO);
#else
#endif
double dTheta = 45;
double dOffset = 0.25;
std::string axisName[3] = { "x", "y", "z" };
double px = 600; double py = 600;
double u0 = 320; double v0 = 240;
// Create a camera parameter container
// Camera initialization with a perspective projection without distortion model
cam.initPersProjWithoutDistortion(px, py, u0, v0);
for (unsigned int idAxis = 0; idAxis < 3; idAxis++) {
unsigned int tOffset = 0;
for (double theta = -180; theta < 180; theta += dTheta) {
vpTranslationVector t(0.05, 0.25 * (idAxis + 1), 0.37);
vpRxyzVector r(0, 0, 0);
t[0] = t[0] + tOffset * dOffset;
tOffset++;
r[idAxis] = vpMath::rad(theta);
cMo.buildFrom(t, vpRotationMatrix(r));
std::stringstream ss_name;
ss_name << "cMo_";
ss_name << static_cast<int>(theta);
ss_name << "_";
ss_name << axisName[idAxis];
vpDisplay::displayFrame(I, cMo, cam, 0.1, vpColor::none, 1, vpImagePoint(), ss_name.str(), vpColor::yellow, vpImagePoint(40, 40));
}
}
std::cout << "A click to quit..." << std::endl;
#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
delete d;
#endif
#else
std::cout << "No gui available to display an image..." << std::endl;
#endif
return EXIT_SUCCESS;
}
Generic class defining intrinsic camera parameters.
static const vpColor none
Definition vpColor.h:210
static const vpColor yellow
Definition vpColor.h:206
Class that defines generic functionalities for display.
Definition vpDisplay.h:171
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void display(const vpImage< unsigned char > &I)
static void displayFrame(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, double size, const vpColor &color=vpColor::none, unsigned int thickness=1, const vpImagePoint &offset=vpImagePoint(0, 0), const std::string &frameName="", const vpColor &textColor=vpColor::black, const vpImagePoint &textOffset=vpImagePoint(15, 15))
static void flush(const vpImage< unsigned char > &I)
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.
Definition vpImage.h:131
static double rad(double deg)
Definition vpMath.h:129
Implementation of a rotation matrix and operations on such kind of matrices.
Implementation of a rotation vector as Euler angle minimal representation.
Class that consider the case of a translation vector.
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.