OpenCV 5.0.0
Open Source Computer Vision
読み込み中...
検索中...
見つかりません
🤖 AIによる機械翻訳(非公式) — これは OpenCV 5.0.0 公式リファレンス(英語)を AI (Claude) で自動翻訳したものです。訳に誤りを含む場合があります。正確な情報は 公式英語版(原文) を参照してください。
motion_estimators.hpp ファイル
#include "opencv2/core.hpp"
#include "matchers.hpp"
#include "util.hpp"
#include "camera.hpp"
Include dependency graph for motion_estimators.hpp:
This graph shows which files directly or indirectly include this file:

クラス

class  cv::detail::AffineBasedEstimator
 アフィン変換に基づく推定器。 続きを読む...
 
class  cv::detail::BundleAdjusterAffine
 各カメラパラメータについて R 内の同次座標で表現されたアフィン変換を期待するバンドル調整器。再投影誤差の二乗和を最小化するカメラパラメータの精緻化アルゴリズムを実装する。 続きを読む...
 
class  cv::detail::BundleAdjusterAffinePartial
 各カメラパラメータについて R 内の同次座標で表現された 4 自由度のアフィン変換を期待するバンドル調整器。再投影誤差の二乗和を最小化するカメラパラメータの精緻化アルゴリズムを実装する。 続きを読む...
 
class  cv::detail::BundleAdjusterBase
 すべてのカメラパラメータ精緻化手法の基底クラス。 続きを読む...
 
class  cv::detail::BundleAdjusterRay
 カメラ中心と特徴を通る光線間の距離の和を最小化するカメラパラメータ精緻化アルゴリズムの実装。 : 続きを読む...
 
class  cv::detail::BundleAdjusterReproj
 再投影誤差の二乗和を最小化するカメラパラメータ精緻化アルゴリズムの実装。 続きを読む...
 
class  cv::detail::Estimator
 回転推定器の基底クラス。 続きを読む...
 
class  cv::detail::HomographyBasedEstimator
 ホモグラフィに基づく回転推定器。 続きを読む...
 
class  cv::detail::NoBundleAdjuster
 何もしないスタブのバンドル調整器。 続きを読む...
 

名前空間

namespace  cv
 
namespace  cv::detail
 

列挙型

enum  cv::detail::WaveCorrectKind {
  cv::detail::WAVE_CORRECT_HORIZ ,
  cv::detail::WAVE_CORRECT_VERT ,
  cv::detail::WAVE_CORRECT_AUTO
}
 

関数

WaveCorrectKind cv::detail::autoDetectWaveCorrectKind (const std::vector< Mat > &rmats)
 パノラマが水平方向に広がるか垂直方向に広がるかに応じて、波補正の種類の検出を試みる。
 
void cv::detail::findMaxSpanningTree (int num_images, const std::vector< MatchesInfo > &pairwise_matches, Graph &span_tree, std::vector< int > &centers)
 
std::vector< int > cv::detail::leaveBiggestComponent (std::vector< ImageFeatures > &features, std::vector< MatchesInfo > &pairwise_matches, float conf_threshold)
 
String cv::detail::matchesGraphAsString (std::vector< String > &paths, std::vector< MatchesInfo > &pairwise_matches, float conf_threshold)
 
void cv::detail::waveCorrect (std::vector< Mat > &rmats, WaveCorrectKind kind)
 パノラマをより水平(または垂直)にしようとする。