RGB-Depth Processing#
Detailed Description#
kinfu_icp
Classes#
Name |
Description |
|---|---|
Modality that computes quantized gradient orientations from a color image. View details |
|
|
Modality that computes quantized surface normals from a dense depth map. View details |
|
Object detector using the LINE template matching algorithm with any set of modalities. View details |
|
Discriminant feature described by its location and label. View details |
|
Represents a successful template match. View details |
|
Interface for modalities that plug into the LINE template matching representation. View details |
Represents a modality operating over an image pyramid. View details |
|
|
Functions#
Return |
Name |
Description |
|---|---|---|
|
||
|
||
|
||
|
|
Debug function to colormap a quantized image for viewing. |
|
|
Debug function to draw linemod features. |
Factory function for detector using LINE algorithm with color gradients. |
||
Factory function for detector using LINE-MOD algorithm with color gradients and depth normals. |
Function Documentation#
Candidate()#
cv::linemod::QuantizedPyramid::Candidate::Candidate(
int x,
int y,
int label,
float score )
#include <opencv2/rgbd/linemod.hpp>
colormap()#
void cv::linemod::colormap(
const Mat & quantized,
Mat & dst )
#include <opencv2/rgbd/linemod.hpp>
Debug function to colormap a quantized image for viewing.
drawFeatures()#
void cv::linemod::drawFeatures(
InputOutputArray img,
const std::vector< Template > & templates,
const Point2i & tl,
int size = 10 )
#include <opencv2/rgbd/linemod.hpp>
Debug function to draw linemod features.
Parameters
imgtemplates— see Detector::addTemplatetl— template bbox top-left offset see Detector::addTemplatesize— marker size see cv::drawMarker
getDefaultLINE()#
Ptr< linemod::Detector > cv::linemod::getDefaultLINE()
#include <opencv2/rgbd/linemod.hpp>
Factory function for detector using LINE algorithm with color gradients.
Default parameter settings suitable for VGA images.
getDefaultLINEMOD()#
Ptr< linemod::Detector > cv::linemod::getDefaultLINEMOD()
#include <opencv2/rgbd/linemod.hpp>
Factory function for detector using LINE-MOD algorithm with color gradients and depth normals.
Default parameter settings suitable for VGA images.