名前
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)
;
説明
近傍における一意となるピクセル値の数を計算します。
初出: 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)