geojson の形状で画像をマスクしようとしています。
最初に行うことは、画像内の緯度経度座標を表すピクセルを取得することです。
その情報を取得したら、その座標で「ポリゴン」を作成し、画像をトリミングしようとしましたが、次のエラーが発生しました。
「numpy.ndarray」オブジェクトは呼び出し可能ではありません
絶対パスは.jp2ファイルを参照することに注意してください。
geoms = [{'type':'Polygon', 'coordinates': [[(x1,y1),(x2,y2),(x3,y3),(x4,y4)]]}]
with rasterio.open(absolutePath) as src:
out_image,out_transform = mask(src,geoms,crop=True)
out_meta = src.meta.copy()
また、ポリゴンを「封印」するために最初の座標を5番目として使用してみましたが、何も変わりませんでした。
私が得た唯一のエラーメッセージはこれです:
TypeErrorTraceback (most recent call last)
<ipython-input-13-796462428f9b> in <module>()
2
3 with rasterio.open(absolutePath) as src:
----> 4 out_image,out_transform = mask(src,geoms,crop=True)
5 out_meta = src.meta.copy()
TypeError: 'numpy.ndarray' object is not callable
ここに私のコード全体があります:
from snappy import ProductIO
from snappy import PixelPos, GeoPos
import numpy as np
import geojson
import cv2
import os
import rasterio
from rasterio.mask import mask
path = '/home/.../x.SAFE'
product = ProductIO.readProduct(path)
sg = product.getSceneGeoCoding()
pathGeoJson = '/home/.../x.geojson'
with open(pathGeoJson) as f:
gj = geojson.load(f)
features = gj['features'][0]
latlon1 = features.geometry.coordinates[0][0]
latlon2 = features.geometry.coordinates[0][1]
latlon3 = features.geometry.coordinates[0][2]
latlon4 = features.geometry.coordinates[0][3]
geoms = gj['features'][0].geometry
geoms
def LatLon_from_XY(ProductSceneGeoCoding, x, y):
geoPos = ProductSceneGeoCoding.getGeoPos(PixelPos(x,y),None)
lat = geoPos.getLat()
lon = geoPos.getLon()
return lat,lon
def XY_from_LatLon(ProductSceneGeoCoding, latitude, longitude):
pixelPos = ProductSceneGeoCoding.getPixelPos(GeoPos(latitude, longitude),None)
x = np.round(pixelPos.getX())
y = np.round(pixelPos.getY())
return x,y
x1,y1 = XY_from_LatLon(sg,latlon1[0], latlon1[1])
x2,y2 = XY_from_LatLon(sg,latlon2[0], latlon2[1])
x3,y3 = XY_from_LatLon(sg,latlon3[0], latlon3[1])
x4,y4 = XY_from_LatLon(sg,latlon4[0], latlon4[1])
print(x1,y1)
print(x2,y2)
print(x3,y3)
print(x4,y4)
pathToJP2 = '/home/.../IMG_DATA/'
arr = os.listdir(pathToJP2)
absolutePath = pathToJP2+arr[1]
arr[1]
print(absolutePath)
geoms = [{'type':'Polygon', 'coordinates': [[(x1,y1),(x2,y2),(x3,y3),(x4,y4)]]}]
with rasterio.open(absolutePath) as src:
out_image,out_transform = mask(src,geoms,crop=True)
out_meta = src.meta.copy()