OpenCV453
クラス | 名前空間 | 型定義 | 列挙型 | 関数
sparse_matching_gpc.hpp ファイル

Implementation of the Global Patch Collider. [詳解]

#include "opencv2/core.hpp"
#include "opencv2/imgproc.hpp"

[ソースコード]

クラス

struct  cv::optflow::GPCPatchDescriptor
 
struct  cv::optflow::GPCPatchSample
 
class  cv::optflow::GPCTrainingSamples
 Class encapsulating training samples. [詳解]
 
struct  cv::optflow::GPCTrainingParams
 Class encapsulating training parameters. [詳解]
 
struct  cv::optflow::GPCMatchingParams
 Class encapsulating matching parameters. [詳解]
 
class  cv::optflow::GPCTree
 Class for individual tree. [詳解]
 
struct  cv::optflow::GPCTree::Node
 
class  cv::optflow::GPCForest< T >
 
class  cv::optflow::GPCDetails
 

名前空間

namespace  cv
 "black box" representation of the file storage associated with a file on disk.
 

型定義

typedef std::vector< GPCPatchSample > cv::optflow::GPCSamplesVector
 

列挙型

enum  cv::optflow::GPCDescType { cv::optflow::GPC_DESCRIPTOR_DCT = 0 , cv::optflow::GPC_DESCRIPTOR_WHT }
 Descriptor types for the Global Patch Collider. [詳解]
 

関数

CV_EXPORTS void cv::write (FileStorage &fs, const String &name, const optflow::GPCTree::Node &node)
 
CV_EXPORTS void cv::read (const FileNode &fn, optflow::GPCTree::Node &node, optflow::GPCTree::Node)
 

詳解

Implementation of the Global Patch Collider.

著者
Vladislav Samsonov vvlad.nosp@m.xx@g.nosp@m.mail..nosp@m.com

Implementation of the Global Patch Collider algorithm from the following paper: http://research.microsoft.com/en-us/um/people/pkohli/papers/wfrik_cvpr2016.pdf

[Wang_2016_CVPR]