16 lines
448 B
Python
16 lines
448 B
Python
import numpy as np
|
|
from datetime import datetime
|
|
from osgeo import gdal
|
|
import math
|
|
import os
|
|
import time
|
|
from PyQt5 import QtWidgets
|
|
from sklearn.cluster import k_means
|
|
from rscder.utils.geomath import geo2imageRC, imageRC2geo
|
|
from rscder.utils.icons import IconInstance
|
|
from rscder.utils.project import Project, PairLayer
|
|
from misc import Register, AlgFrontend
|
|
|
|
VEG_CD = Register('植被变化检测方法')
|
|
|
|
from .vfc import VFCCD |