OpenCV 4.5.3(日本語機械翻訳)
クラス
Phase Unwrapping API

クラス

class cv::phase_unwrapping::HistogramPhaseUnwrapping
に基づいて 2 次元の位相アンラップを実装したクラス.[histogramUnwrapping] です.このアルゴリズムは,品質誘導型の位相アンラッピング法に属します.まず,1つのピクセルとその8つの近傍のピクセルとの間の第2の差から,信頼性マップを計算します.信頼性の値は,0から16*pi*piの間にあります.次に、この信頼性マップを使って、「エッジ」の信頼性を計算します。エッジとは、水平方向または垂直方向に接続された2つのピクセルで定義されるエンティティです。エッジの信頼性は,エッジを介して接続された2つのピクセルの信頼性を加算して求められます。エッジは、その信頼性の値に基づいてヒストグラムでソートされます。このヒストグラムを使って,最も品質の高いピクセルから順に,ピクセルをアンラップしていきます。[【詳解】(英語]
class cv::phase_unwrapping::PhaseUnwrapping
位相アンラップのための抽象的な基本クラス.[【詳解】(英語]

詳解

Two-dimensional phase unwrapping is found in different applications like terrain elevation estimation in synthetic aperture radar (SAR), field mapping in magnetic resonance imaging or as a way of finding corresponding pixels in structured light reconstruction with sinusoidal patterns.

Given a phase map, wrapped between [-pi; pi], phase unwrapping aims at finding the "true" phase map by adding the right number of 2*pi to each pixel.

The problem is straightforward for perfect wrapped phase map, but real data are usually not noise-free. Among the different algorithms that were developed, quality-guided phase unwrapping methods are fast and efficient. They follow a path that unwraps high quality pixels first, avoiding error propagation from the start.

In this module, a quality-guided phase unwrapping is implemented following the approach described in [histogramUnwrapping] .