名前

ST_Distinct4ma — 近傍における一意となるピクセル値の数を計算するラスタ処理関数です。 Raster processing function that calculates the number of unique pixel values in a neighborhood.

概要

float8 ST_Distinct4ma(float8[][] matrix, text nodatamode, text[] VARIADIC args);

説明

近傍における一意となるピクセル値の数を計算します。

[注記]

この関数はST_MapAlgebraFctNgbに渡すのに特化したユーザ定義関数です。

初出: 2.0.0

SELECT 
    rid,
    st_value(
        st_mapalgebrafctngb(rast, 1, NULL, 1, 1, 'st_distinct4ma(float[][],text,text[])'::regprocedure, 'ignore', NULL), 2, 2
    ) 
FROM dummy_rast 
WHERE rid = 2;
 rid | st_value
-----+----------
   2 |        3
(1 row)
				

関連情報

ST_MapAlgebraFctNgb, ST_Min4ma, ST_Max4ma, ST_Sum4ma, ST_Mean4ma, ST_Distinct4ma ST_StdDev4ma