File size: 1,039 Bytes
83a44e8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from abc import ABC, abstractmethod
from typing import List, Optional

import numpy as np


class BaseModel(ABC):

    @abstractmethod
    def predict(self, image: np.ndarray) -> np.ndarray:
        """
        Run super-resolution inference on a single image.

        Args:
            image: (C, H, W) float32 numpy array, values in [0, 1]
                   C must match in_channels (4 for RGBN variant)

        Returns:
            (C, H*scaling_factor, W*scaling_factor) float32 numpy array
            in the same radiometric range as the input
        """
        pass

    @abstractmethod
    def predict_tif(
        self,
        input_path:  str,
        output_path: str,
        bands:       Optional[List[int]] = None,
    ) -> None:
        """
        Full GeoTIFF super-resolution pipeline.

        Args:
            input_path  : path to input GeoTIFF
            output_path : output path for super-resolved GeoTIFF
            bands       : 0-based band indices to read (default: [0,1,2,3])
        """
        pass