2#include <visp3/core/vpConfig.h>
3#include <visp3/gui/vpDisplayFactory.h>
4#include <visp3/core/vpHomogeneousMatrix.h>
6#ifdef ENABLE_VISP_NAMESPACE
12#if defined(VISP_HAVE_DISPLAY)
16#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
25 double dOffset = 0.25;
26 std::string axisName[3] = {
"x",
"y",
"z" };
27 double px = 600;
double py = 600;
28 double u0 = 320;
double v0 = 240;
34 cam.initPersProjWithoutDistortion(px, py, u0, v0);
36 for (
unsigned int idAxis = 0; idAxis < 3; idAxis++) {
37 unsigned int tOffset = 0;
38 for (
double theta = -180; theta < 180; theta += dTheta) {
41 t[0] =
t[0] + tOffset * dOffset;
46 std::stringstream ss_name;
48 ss_name << static_cast<int>(theta);
50 ss_name << axisName[idAxis];
53 vpDisplay::displayFrame(I, cMo, cam, 0.1,
vpColor::none, 1,
vpImagePoint(), ss_name.str(),
vpColor::yellow,
vpImagePoint(40, 40));
59 std::cout <<
"A click to quit..." << std::endl;
62#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
67 std::cout <<
"No gui available to display an image..." << std::endl;
Generic class defining intrinsic camera parameters.
static const vpColor none
static const vpColor yellow
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 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.
static double rad(double deg)
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.