Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以告诉我如何使用羽化图像的边缘gdal吗?我一直认为-cblend交换机会做到这一点,但也许我误解了一些东西。
gdal
-cblend
这是我尝试过的:
gdalwarp -t_srs ESPG:4326 -multi -cblend 200 -of GTiff input.jp2 test.tiff
我不介意在 QGIS 中或仅在 OSGeo4W 命令提示符中执行此操作。
此回复是对一个非常古老的帖子的回复,但为了那些寻找此问题答案的人,提供解决方案可能会很好。
要使用-cblend您需要有一个-cutline与该命令相关联的命令。-cblend创建应用切割线的混合区域。
-cutline
gdalwarp -t_srs ESPG:4326 -multi -cutline '/cutlineshape.shp' -cblend 200 -of GTiff input.jp2 test.tiff