I

積分画像

II

積分画像は、画像の特徴量の計算を簡素化するデータ構造です。

積分画像

積分 image, also known as a summed-area table, is a data structure 画像処理で to enable fast computation of the sum of pixel values in a rectangular subset of an image. It transforms the image data into a format that allows for quick retrieval ピクセル値を複数回反復せずにピクセルの合計を計算すること。

積分画像は、新しい画像を作成することで構築されます。各ピクセル(x, y)には、元の画像の(x, y)より上方および左側のすべてのピクセルの合計が含まれます。数学的には、積分画像Iにおいて、ピクセル(x, y)の値は次のように表されます:

I(x, y) = すべての i に対して original_image[i, j] の合計 <= x and j <= y

This means that to compute the sum of pixel values in any rectangular region of the original image, you can use just four lookups in the integral image, dramatically reducing computation time.

積分画像は、特に次のようなアプリケーションで役立ちます コンピュータビジョン, where they help in tasks like object detection and 画像セグメンテーション. For example, in the Viola-Jones face detection framework, integral images allow for rapid calculation of Haar-like features, enabling real-time face detection.

全体として、積分画像は画像データの前処理を効率的に行う方法であり、多くのリアルタイムアプリケーションで重要な高速計算を促進します。

コントロール + /