#include <iostream>
#include <visp3/core/vpConfig.h>
#ifdef ENABLE_VISP_NAMESPACE
#endif
#ifndef VISP_HAVE_REALSENSE2
int main()
{
std::cerr << "To run this tutorial, recompile ViSP with the Realsense third party library" << std::endl;
return EXIT_SUCCESS;
}
#else
#include <visp3/sensor/vpRealSense2.h>
#include <visp3/io/vpParseArgv.h>
#include <visp3/ar/vpPanda3DFrameworkManager.h>
#include <visp3/rbt/vpRBTracker.h>
#include "render-based-tutorial-utils.h"
#ifndef DOXYGEN_SHOULD_SKIP_THIS
{
{ }
{
parser.addArgument(
"--height", height,
false,
"Realsense requested image height")
.addArgument("--width", width, false, "Realsense requested image width")
.addArgument("--fps", fps, false, "Realsense requested framerate");
}
};
#endif
{
#ifdef VISP_HAVE_OPENMP
#pragma omp parallel for
#endif
for (
int i = 0; i < static_cast<int>(depthRaw.
getSize()); ++
i) {
depth.bitmap[
i] = depthScale *
static_cast<float>(depthRaw.
bitmap[
i]);
IdepthDisplay.
bitmap[
i] =
depth.bitmap[
i] > maxZDisplay ? 0 :
static_cast<unsigned int>((
depth.bitmap[
i] / maxZDisplay) * 255.f);
}
}
int main(int argc, const char **argv)
{
vpRBTrackerTutorial::BaseArguments baseArgs;
vpRBTrackerTutorial::vpRBExperimentLogger logger;
vpRBTrackerTutorial::vpRBExperimentPlotter
plotter;
"Tutorial showing the usage of the Render-Based tracker with a RealSense camera",
"--config", "/"
);
baseArgs.registerArguments(parser);
logger.registerArguments(parser);
baseArgs.postProcessArguments();
plotter.postProcessArguments(baseArgs.display);
if (baseArgs.enableRenderProfiling) {
vpRBTrackerTutorial::enableRendererProfiling();
}
std::cout << "Loading tracker: " << baseArgs.trackerConfiguration << std::endl;
tracker.loadConfigurationFile(baseArgs.trackerConfiguration);
if (!baseArgs.modelPath.empty()) {
tracker.setModelPath(baseArgs.modelPath);
}
const unsigned int width = realsenseArgs.width,
height = realsenseArgs.height;
const unsigned fps = realsenseArgs.fps;
std::cout <<
"Opening realsense with settings: " <<
width <<
"x" <<
height <<
" @ " <<
fps <<
"fps" << std::endl;
config.enable_stream(RS2_STREAM_COLOR, width, height, RS2_FORMAT_RGBA8, fps);
config.enable_stream(RS2_STREAM_DEPTH, width, height, RS2_FORMAT_Z16, fps);
rs2::align align_to(RS2_STREAM_COLOR);
try {
}
std::cout <<
"Caught an exception: " <<
e.what() << std::endl;
std::cout << "Check if the Realsense camera is connected..." << std::endl;
return EXIT_FAILURE;
}
tracker.setCameraParameters(cam, height, width);
for (
int i = 0;
i < 10; ++
i) {
}
std::cout << "Creating displays..." << std::endl;
std::vector<std::shared_ptr<vpDisplay>> displays, displaysDebug;
if (baseArgs.display) {
displays = vpRBTrackerTutorial::createDisplays(Id, Icol, IdepthDisplay, IProbaDisplay);
if (baseArgs.debugDisplay) {
0, 0,
20, 20,
"Normals in object frame", InormDisplay,
"Depth canny", cannyDisplay
);
}
}
if (baseArgs.display && !baseArgs.hasInlineInit()) {
bool ready = false;
while (!ready) {
realsense.
acquire((
unsigned char *)Icol.bitmap, (
unsigned char *)depthRaw.
bitmap,
nullptr,
nullptr, &align_to);
updateDepth(depthRaw, depthScale, baseArgs.maxDepthDisplay, depth, IdepthDisplay);
ready = true;
}
else {
}
}
}
std::cout << "Starting init" << std::endl;
if (baseArgs.hasInlineInit()) {
}
else if (baseArgs.display) {
tracker.initClick(Id, baseArgs.initFile,
true);
}
else {
}
std::cout <<
"Starting pose: " <<
vpPoseVector(cMo).
t() << std::endl;
if (baseArgs.display) {
}
logger.startLog();
while (true) {
realsense.
acquire((
unsigned char *)Icol.bitmap, (
unsigned char *)depthRaw.
bitmap,
nullptr,
nullptr, &align_to);
updateDepth(depthRaw, depthScale, baseArgs.maxDepthDisplay, depth, IdepthDisplay);
case vpRBTrackingStoppingReason::EXCEPTION:
{
std::cout << "Encountered an exception during tracking, pose was not updated!" << std::endl;
break;
}
case vpRBTrackingStoppingReason::NOT_ENOUGH_FEATURES:
{
std::cout << "There were not enough feature to perform tracking!" << std::endl;
break;
}
case vpRBTrackingStoppingReason::OBJECT_NOT_IN_IMAGE:
{
std::cout << "Object is not in image!" << std::endl;
break;
}
case vpRBTrackingStoppingReason::CONVERGENCE_CRITERION:
{
std::cout << "Convergence criterion reached:" << std::endl;
break;
}
case vpRBTrackingStoppingReason::MAX_ITERS:
{
break;
}
default:
{ }
}
const std::shared_ptr<vpRBDriftDetector> driftDetector =
tracker.getDriftDetector();
if (driftDetector) {
if (driftDetector->getScore() < 0.25) {
std::cout << "Drift detection has low confidence score: " << driftDetector->getScore() << std::endl;
}
}
if (baseArgs.display) {
if (baseArgs.debugDisplay) {
}
tracker.display(Id, Icol, IdepthDisplay);
if (driftDetector) {
std::stringstream ss;
ss << "Confidence score: " << std::setprecision(2) << driftDetector->getScore() << std::endl;
}
break;
}
}
tracker.displayMask(IProbaDisplay);
}
logger.logFrame(tracker, iter, Id, Icol, IdepthDisplay, IProbaDisplay);
std::cout <<
"Iter " <<
iter <<
": " << round(frameEnd - frameStart) <<
"ms" << std::endl;
std::cout << "- Tracking: " << round(trackingEnd - trackingStart) << "ms" << std::endl;
std::cout << "- Display: " << round(displayEnd - displayStart) << "ms" << std::endl;
if (baseArgs.verbose) {
std::cout << result.
timer() << std::endl;
}
plotter.plot(tracker, (frameEnd - expStart) / 1000.0);
}
logger.close();
return EXIT_SUCCESS;
}
#endif
Generic class defining intrinsic camera parameters.
@ perspectiveProjWithoutDistortion
Perspective projection without distortion model.
static const vpColor none
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)
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.
@ notImplementedError
Not implemented.
Implementation of an homogeneous matrix and operations on such kind of matrices.
static void convert(const vpImage< unsigned char > &src, vpImage< vpRGBa > &dest)
Definition of the vpImage class member functions.
unsigned int getWidth() const
unsigned int getSize() const
Type * bitmap
points toward the bitmap
unsigned int getHeight() const
Command line argument parsing with support for JSON files. If a JSON file is supplied,...
static vpPanda3DFrameworkManager & getInstance()
Implementation of a pose vector and operations on poses.
Class implementing the Render-Based Tracker (RBT).
vpRBTrackingStoppingReason getStoppingReason() const
vpRBTrackingTimings & timer()
const std::vector< double > & getConvergenceMetricValues() const
unsigned int getNumIterations() const
vpCameraParameters getCameraParameters(const rs2_stream &stream, vpCameraParameters::vpCameraParametersProjType type=vpCameraParameters::perspectiveProjWithDistortion, int index=-1) const
void acquire(vpImage< unsigned char > &grey, double *ts=nullptr)
bool open(const rs2::config &cfg=rs2::config())
std::vector< std::shared_ptr< vpDisplay > > makeDisplayGrid(unsigned int rows, unsigned int cols, unsigned int startX, unsigned int startY, unsigned int paddingX, unsigned int paddingY, Args &... args)
Create a grid of displays, given a set of images. All the displays will be initialized in the correct...
VISP_EXPORT double measureTimeMs()
VISP_EXPORT int wait(double t0, double t)
void registerArguments(vpJsonArgumentParser &parser)
vpImage< unsigned char > isSilhouette
Image containing the orientation of the gradients.
vpImage< float > silhouetteCanny