OpenCV 4.5.3(日本語機械翻訳)
公開型 | 公開メンバ関数 | 静的公開メンバ関数 | 公開変数類 | 限定公開メンバ関数 | 限定公開変数類 | 全メンバ一覧
cv::rgbd::DepthCleaner クラス

#include <depth.hpp>

cv::Algorithmを継承しています。

公開型

enum DEPTH_CLEANER_METHOD { DEPTH_CLEANER_NIL }

公開メンバ関数

DepthCleaner (int depth, int window_size=5, int method=DepthCleaner::DEPTH_CLEANER_NIL)
CV_WRAP_AS (apply) void operator()(InputArray points
CV_WRAP void initialize () const
CV_WRAP int getWindowSize () const
CV_WRAP void setWindowSize (int val)
CV_WRAP int getDepth () const
CV_WRAP void setDepth (int val)
CV_WRAP int getMethod () const
CV_WRAP void setMethod (int val)
- 基底クラス cv::Algorithm に属する継承公開メンバ関数
virtual CV_WRAP void clear ()
アルゴリズムの状態をクリアする[【詳解】(英語]
virtual void write (FileStorage &fs) const
アルゴリズムのパラメーターをファイルストレージに格納[【詳解】(英語]
CV_WRAP void write (const Ptr< FileStorage > &fs, const String &name=String()) const
これはオーバーロードされたメンバ関数です。利便性のために用意されています。元の関数との違いは引き数のみです。
virtual CV_WRAP void read (const FileNode &fn)
アルゴリズム・パラメータをファイル・ストレージから読み込みます。[【詳解】(英語]
virtual CV_WRAP bool empty () const
が空の場合はtrueを返します。Algorithmが空の場合は真を返します。[【詳解】(英語]
virtual CV_WRAP void save (const String &filename) const
virtual CV_WRAP String getDefaultName () const

静的公開メンバ関数

static CV_WRAP Ptr< DepthCleaner > create (int depth, int window_size=5, int method=DepthCleaner::DEPTH_CLEANER_NIL)
- 基底クラス cv::Algorithm に属する継承静的公開メンバ関数
template<typename _Tp >
static Ptr< _Tp > read (const FileNode &fn)
ファイル・ノードからアルゴリズムを読み込む[【詳解】(英語]
template<typename _Tp >
static Ptr< _Tp > load (const String &filename, const String &objname=String())
ファイルからアルゴリズムを読み込む[【詳解】(英語]
template<typename _Tp >
static Ptr< _Tp > loadFromString (const String &strModel, const String &objname=String())
文字列からアルゴリズムを読み込む[【詳解】(英語]

公開変数類

OutputArray depth const

限定公開メンバ関数

void initialize_cleaner_impl () const
- 基底クラス cv::Algorithm に属する継承限定公開メンバ関数
void writeFormat (FileStorage &fs) const

限定公開変数類

int depth_
int window_size_
int method_
void * depth_cleaner_impl_

詳解

ノイズの多い深度画像をクリーンアップすることができるオブジェクト

列挙型メンバ詳解

DEPTH_CLEANER_METHOD

NILメソッドはModeling Kinect Sensor Noise for Improved 3d Reconstruction and TrackingC. Nguyen, S. Izadi, D. Lovel によるものです.

構築子と解体子

DepthCleaner()

cv::rgbd::DepthCleaner::DepthCleaner ( int depth,
int window_size = 5,
int method = DepthCleaner::DEPTH_CLEANER_NIL
)

コンストラクタ

引数
depth 法線の深さ(CV_32F または CV_64F のみ).
window_size 法線を計算するためのウィンドウサイズ:1,3,5,7のいずれかです.
method 使用する手法の1つ.rgbd_normals_method_sri, rgbd_normals_method_fals

関数詳解

CV_WRAP_AS()

cv::rgbd::DepthCleaner::CV_WRAP_AS ( apply )

深度画像内の3次元点の集合が与えられた場合,各点の法線を求めます.

引数
points CV_32F/CV64F の行×列×3 の行列,または CV_U16S の行×列×1 の行列.
depth クリーンアップされた深度を表す,行×列の行列.

initialize()

CV_WRAP void cv::rgbd::DepthCleaner::initialize ( ) const

後の計算のためにキャッシュされるいくつかのデータを初期化します. この関数が呼ばれなかった場合は,法線が最初に計算されるときに呼び出されます.


このクラス詳解は次のファイルから抽出されました: