Source code for nav.nav_technique.nav_technique_correlate_all

import copy
from typing import TYPE_CHECKING, cast

import numpy as np

from nav.config import Config
from nav.nav_model import NavModelCombined, NavModelStars
from nav.support.correlate import navigate_with_pyramid_kpeaks
from nav.support.misc import mad_std
from nav.support.types import MutableStar, NDArrayFloatType, NDArrayIntType

from .nav_technique import NavTechnique

if TYPE_CHECKING:
    from nav.nav_master import NavMaster