全部產品
Search
文件中心

PolarDB:ST_Percentile

更新時間:Jul 06, 2024

擷取影像的波段百分比值。

文法

float8 ST_Percentile(raster raster_obj,
                     integer band,
                     integer percentage)

參數

參數名稱描述
raster_objraster對象。
band指定的波段序號,從0開始,格式類似'0,1-3,6,8'的形式, ''表示所有的波段。
percentageraster對象的百分比。可通過ST_BuildPercentilesST_ComputeStatistics擷取。

樣本

SELECT st_percentile(rast_obj, 0, 10)
FROM raster_table
WHERE id = 1;

--------------------
29.7
ST_Quantile的功能也可以使用ST_Percentile實現:
SELECT st_percentile(rast_obj, 0, 25), st_percentile(rast_obj, 0, 50)
FROM raster_table
WHERE id = 1;