Hi there, I'm
Machine Learning
Deep Learning
Generative Models
Land Cover Classification
Object Detection
Image Segmentation
Change Detection
import torch
import rasterio
from torchvision import transforms
def preprocess_image(file_path):
with rasterio.open(file_path) as img:
array = img.read()
tensor = torch.from_numpy(array)
return tensor
image_tensor = preprocess_image('img.tif')
transform = transforms.Compose([...])
transformed_tensor = transform(image_tensor)
Python
C#
JavaScript/TypeScript
Rust
Java
ArcGIS
QGIS
Web GIS