---
title: Multi-Scale Boundary Loss Methods
url: https://www.emergentmind.com/topics/multi-scale-boundary-loss
type: topic
---

# Multi-Scale Boundary Loss Methods

Searching arXiv for recent papers on multi-scale boundary-aware losses and closely related methods.
arxiv_search.query({"search_query":"all:\"complex wavelet mutual information loss\" OR all:\"steerable pyramid weighted loss\" OR all:\"boundary corrected multi-scale fusion network\" OR all:\"centerline boundary Dice loss\"","max_results":10,"sort_by":"submittedDate","sort_order":"descending"})
Reviewing search results for directly relevant arXiv papers.
Multi-Scale Boundary Loss denotes a family of training objectives for dense prediction in which boundary supervision is distributed across multiple spatial scales, and often across orientations, centerlines, or geometric neighborhoods, rather than being imposed only at the native pixel grid. In semantic segmentation and related structured prediction tasks, such losses are motivated by the persistent failure modes of standard pixel-wise or region-overlap objectives on thin structures, small instances, and contour localization. Recent formulations instantiate this idea through complex steerable-pyramid mutual information, adaptive steerable-pyramid weighting, online boundary-hard-sample mining in multi-scale fusion networks, centerline- and distance-aware Dice variants, and power-regularized multi-magnitude losses in physics-informed settings [2502.00563], [2503.06604], [2203.00436], [2407.01517], [2308.06672].

## 1. Conceptual scope and problem setting

A multi-scale boundary loss is designed for regimes in which segmentation quality depends not only on region overlap but also on contour fidelity, thin-structure continuity, and topological correctness. The motivating observation shared across the literature is that conventional losses such as Cross-Entropy, BCE, Focal, or Dice either optimize each pixel independently or emphasize global set overlap, and therefore tend to underweight boundary pixels, especially under class imbalance and instance imbalance. Smaller instances and thin boundaries are often overshadowed by larger structures, producing jagged, eroded, or missing contours [2502.00563].

Within semantic segmentation, two recent 2025 formulations make this definition explicit. The complex wavelet mutual information (CWMI) loss treats a multi-scale boundary loss as a frequency-domain structural objective: predictions and labels are decomposed into oriented complex bandpass subbands, and mutual information is maximized between corresponding subband responses across scales [2502.00563]. The steerable pyramid weighted (SPW) loss instead realizes the same concept as a weighting scheme: it up-weights pixels whose ground-truth and current prediction exhibit strong multi-scale, multi-orientation bandpass energy, thereby turning a standard base loss such as cross-entropy into a boundary-focused objective without distance transforms [2503.06604].

The same general principle appears in other domains and architectures. In real-time scene parsing, Boundary Corrected Loss (BCL) compensates for the contour degradation induced by low-resolution multi-scale fusion through online selection of boundary-hard samples [2203.00436]. In vascular segmentation, cbDice introduces scale-adaptive boundary supervision by combining centerline topology with mask-distance and inverse-radius weighting, thereby making the loss responsive to both vessel boundaries and vessel caliber [2407.01517]. In PINNs for multi-scale PDEs, boundary terms are balanced against interior residuals through power-regularized reconstruction of the loss, so that small-magnitude boundary or initial terms are not ignored during optimization [2308.06672].

This suggests that “multi-scale boundary loss” is best understood as a design principle rather than a single formula: the key requirement is that boundary information be represented at more than one spatial or structural scale, and that optimization be biased toward preserving geometrically fragile structures.

## 2. Frequency-domain formulations: steerable pyramids and complex wavelets

The most explicit frequency-domain formulation is CWMI, introduced in "Complex Wavelet Mutual Information Loss: A Multi-Scale Loss Function for Semantic Segmentation" [2502.00563]. Its core mechanism is a complex steerable pyramid, described as a redundant, polar-separable, multi-scale, multi-orientation decomposition that produces oriented bandpass subbands across scales together with low- and high-pass components. The stated motivation is that phase and magnitude in these complex subbands preserve local structural information critical for edges, corners, and thin boundaries.

For orientation $k \in \{1,\dots,K\}$ in polar frequency coordinates $(r,\theta)$, the bandpass filter is defined as

$$
B_k(r,\theta) \;=\; H(r)\, G_k(\theta),
$$

with angular component

$$
G_k(\theta)\;=\;\alpha_k\,\left|\cos\!\left(\theta-\dfrac{\pi k}{K}\right)\right|^{K-1}.
$$

To encode local phase, the analytic version discards negative frequencies through

$$
\tilde{G}_k(\theta)=
\begin{cases}
2\,\alpha_k\,\left[\cos\!\left(\theta-\dfrac{\pi k}{K}\right)\right]^{K-1}, & \left|\theta-\dfrac{\pi k}{K}\right|<\dfrac{\pi}{2},\\[6pt]
0, & \text{otherwise}.
\end{cases}
$$

Subbands are computed by FFT-domain masking followed by inverse FFT, or equivalently by complex spatial convolution,

$$
B_{s,o}(x)\;=\;(X * g_{s,o})(x).
$$

For an image $\mathbf{I}$ with $N$ pyramid levels and $K$ orientations, the decomposition is written as

$$
\mathbf{I} \;\longrightarrow\;
\Big\{
\mathbf{I}_{H_0}\in\mathbb{R}^{H_0\times W_0},\;
\mathbf{I}_{B_1}\in\mathbb{C}^{K\times H_0\times W_0},\;
\mathbf{I}_{B_2}\in\mathbb{C}^{K\times H_1\times W_1},\;\dots,\;
\mathbf{I}_{B_N}\in\mathbb{C}^{K\times H_{N-1}\times W_{N-1}},\;
\mathbf{I}_{L_0}\in\mathbb{R}^{H_{N-1}\times W_{N-1}}
\Big\}.
$$

CWMI uses only the oriented complex bandpass subbands for mutual-information computation, not the low- or high-pass residues. The paper reports that all experiments use $N=S=4$ scales and $K=O=4$ orientations, with uniform aggregation across subbands and no bespoke weighting [2502.00563].

SPW, presented in "Steerable Pyramid Weighted Loss: Multi-Scale Adaptive Weighting for Semantic Segmentation" [2503.06604], uses a standard steerable pyramid rather than a complex mutual-information objective. Its frequency-domain decomposition has the same multi-scale, multi-orientation role: boundaries are treated as energy-rich structures in oriented subbands, especially at finer scales. For any subband $X = I_{B_{i,k}}$, the local boundary energy is measured through the analytic signal

$$
X_a = X + j \,\hat{H}(X),
$$

where $\hat{H}(\cdot)$ is the Hilbert transform. The magnitude $|X_a|$ is then used as a smooth local amplitude envelope.

A plausible implication is that the frequency-domain branch of multi-scale boundary losses differs internally on what is optimized: CWMI aligns prediction and label through statistical dependence in a complex representation, whereas SPW uses the same spectral evidence to modulate the importance of pixels in a conventional loss. Both, however, rely on the same boundary premise: edges and thin structures are more explicitly represented in oriented, multi-scale bandpass responses than in raw pixel space.

## 3. Loss constructions and mathematical forms

The principal formulations differ in whether multi-scale boundary information enters the objective directly, through per-pixel weighting, through hard-sample selection, or through topology-aware overlap terms.

CWMI defines mutual information on each bandpass level $n$ by

$$
I(\mathbf{Y}_{B_n};\mathbf{P}_{B_n}) \;=\; H(\mathbf{Y}_{B_n}) - H(\mathbf{Y}_{B_n}\mid \mathbf{P}_{B_n}),
$$

but implements a differentiable Gaussian approximation, following Zhao et al. (RMI), rather than histogram-based MI [2502.00563]. The local/regional estimator is

$$
I_l(\mathbf{Y}_{B_n}; \mathbf{P}_{B_n}) \;\approx\; -\frac{1}{2}\,\log\det\big(\mathbf{M}_n\big),
$$

with

$$
\mathbf{M}_n \;=\; \mathbf{\Sigma}_{\mathbf{Y}_{B_n}}
\;-\; \mathrm{Cov}(\mathbf{Y}_{B_n}, \mathbf{P}_{B_n})\;
\mathbf{\Sigma}_{\mathbf{P}_{B_n}}^{-1}\;
\mathrm{Cov}(\mathbf{Y}_{B_n}, \mathbf{P}_{B_n})^{H}.
$$

Each pixel contributes a $K$-dimensional vector of directional responses, and sample covariances are computed across spatial samples in the subband. The loss itself is

$$
L_{\mathrm{CWMI}}(\mathbf{Y},\mathbf{P}) \;=\; -\sum_{n=1}^{N}\, I_l\!\big(\mathbf{Y}_{B_n}; \mathbf{P}_{B_n}\big).
$$

Training uses a hybrid objective

$$
L_{\mathrm{total}} \;=\; (1-\lambda)\,L_{\mathrm{CWMI}} \;+\; \lambda\,L_{\mathrm{CE}},
\qquad \lambda=0.1.
$$

SPW uses a weighting map built from both the label and the current prediction. For an image $I$, the multi-scale map is

$$
w(I) = \sum_{i=1}^N \sum_{k=1}^K \beta^{i-1} U\!\left(\left| I_{B_{i,k}} + j \hat{H}(I_{B_{i,k}}) \right|\right),
$$

where $U(\cdot)$ upsamples each subband back to input resolution. The adaptive SPW map is

$$
w_{\mathrm{SPW}}(Y, P)
=
\sum_{i,k} \beta^{i-1} U\!\left(\left| Y_{B_{i,k}} + j \hat{H}(Y_{B_{i,k}}) \right|\right)
+
\sum_{i,k} \beta^{i-1} U\!\left(\left| P_{B_{i,k}} + j \hat{H}(P_{B_{i,k}}) \right|\right),
$$

and the final pixel weight is

$$
w(x) = w_c + \lambda\, w_{\mathrm{SPW}}(Y,P)(x).
$$

The paper uses weighted cross-entropy

$$
L_{\mathrm{SPW\text{-}CE}} = - \sum_x \sum_c w(x)\, Y_{x,c}\log P_{x,c}.
$$

BCL in BCMFNet uses neither spectral decomposition nor distance transforms. Its overall objective is

$$
L_t = L_{ce}(y_{pred}, y_{gt}) + \alpha\, L_b(y_{pred}, y_{gt}'),
$$

where $L_b$ is constructed from row- and column-shifted label maps. For step size $s$, transformed labels are defined by

$$
Y^{(s)}_{row}(i,j,c) \;=\; Y(i,\; \mathrm{clip}(j+s),\; c),
$$

$$
Y^{(s)}_{col}(i,j,c) \;=\; Y(\mathrm{clip}(i+s),\; j,\; c).
$$

Per-pixel cross-entropies are computed against these transformed labels, the maximum of row and column losses is used as a score map, and non-maximum suppression plus thresholding or top-$k$ selection yields a boundary-hard mask. The per-step boundary-corrected loss is then

$$
L_b^{(s)} \;=\; \frac{\lambda_1}{|\mathcal{B}^{(s)}|}\sum_p m^{(s)}(p)\,\ell^{(s)}_{row}(p)
\;+\;
\frac{\lambda_2}{|\mathcal{B}^{(s)}|}\sum_p m^{(s)}(p)\,\ell^{(s)}_{col}(p),
$$

with multi-step aggregation

$$
\mathcal{L}_{b}(y_{pred}, y_{gt}') \;=\; \sum_{s\in S} w_s\, L_{b}^{(s)}.
$$

cbDice, introduced in "Centerline Boundary Dice Loss for Vascular Segmentation" [2407.01517], takes a different route. It generalizes clDice through the cl-X-Dice family and instantiates cbDice as the cl-MIN-D case, combining normalized distance-to-boundary maps and inverse normalized radii on skeletons. With $DN = D/R_{\max}$, $RN = R/R_{\max}$, and $IN = I/I_{\min}$, the precision and sensitivity terms are

$$
Tprec(cb) = \frac{|I_{P,N} \cap D_{L,N}|}
{|I_{P,N} \cap R_{P,N} \cap (U - S_L)| + |I_{P,N} \cap R_{L,N}|},
$$

$$
Tsens(cb) = \frac{|I_{L,N} \cap D_{P,N}|}
{|I_{L,N} \cap R_{L,N} \cap (U - S_P)| + |I_{L,N} \cap R_{P,N}|},
$$

and

$$
cbDice(V_P, V_L) = \frac{2 \cdot Tprec(cb)\cdot Tsens(cb)}{Tprec(cb)+Tsens(cb)}.
$$

By construction, this loss is boundary-aware through distance maps and scale-adaptive through inverse-radius weighting.

In PINNs, the multi-scale boundary idea refers not to image scale but to loss-term magnitude across scales and frequencies. The modified loss is

$$
\tilde{L}(\theta; \Sigma) = w_s [L_s(\theta; \tau_s)]^{1/m} + w_r [L_r(\theta; \tau_r)]^{1/n},
$$

or, with grouped residuals,

$$
L_r(\theta; \tau_r) = \sum_{h=1}^k \omega_{r,h} [L_{r,h}(\theta; \tau_{r,h})]^{1/n_h}.
$$

Here $L_s$ includes initial and boundary terms, such as Dirichlet, Neumann, and Robin components. The paper states that the power factors equalize magnitudes so that all terms are optimized synchronously [2308.06672]. This suggests a broader interpretation of multi-scale boundary loss: scale can refer not only to image resolution but also to magnitude scale in coupled objectives.

## 4. Mechanisms of boundary sensitivity

The boundary sensitivity of these losses arises from distinct but related mechanisms.

In CWMI, boundary sensitivity is attributed to orientation-selective bandpass filters and to the emphasis of mid/high-frequency layers. The paper states that orientation-selective filters respond strongly to edges at specific angles, and that empirically layers 3 and 4 contributed most to region overlap and boundary HD, with the 4th layer best for HD. No explicit subband weights are applied, but the ablations show that higher-frequency subbands aid boundary metrics [2502.00563]. Mutual information is described as robust to nuisance variation such as small phase shifts and mild noise, so the loss can enforce structural consistency even when exact pixel alignment is imperfect.

SPW’s mechanism is more directly local. High-frequency subbands capture abrupt intensity transitions, edges, and thin structures across orientations, and the analytic magnitude produces a positive, phase-insensitive estimate of edge strength. Because the weight map is computed from both ground-truth and current prediction and updated on-the-fly, the loss can focus learning on regions where the model presently exhibits strong high-frequency content, including suspicious edges and fine structures [2503.06604]. The paper explicitly contrasts this with distance-transform weighting, which is described as static unless recomputed.

BCL identifies likely boundary pixels through label shifts rather than explicit edge extraction. The transformed labels induce mismatches mainly near contours; per-pixel losses under these transforms therefore act as proxies for boundary uncertainty. Online hard-example mining via non-maximum suppression and thresholding then concentrates supervision on the selected boundary-hard pixels [2203.00436]. Unlike spectral or distance-based losses, BCL derives its boundary focus from supervision perturbation.

cbDice derives boundary sensitivity from Euclidean distance transforms on masks. The distance maps $D_L$ and $D_P$ weight centerline matches by proximity to boundaries, while inverse-radius weights amplify the contribution of thinner vessels so that diameter imbalance does not cause large vessels to dominate the optimization [2407.01517]. The paper states that cl-M-D is sensitive to translations of the mask within the radius $R$, unlike clDice, and that cbDice matches the behavior of B-DoU under pure translations.

In PINNs, boundary sensitivity takes the form of gradient rebalancing. For a general loss $L = \sum_i w_i L_i^{p_i}$, the gradient is

$$
\frac{\partial L}{\partial \theta} = \sum_i w_i p_i L_i^{p_i-1}\frac{\partial L_i}{\partial \theta}.
$$

With $0 < p_i \le 1$, large loss terms are attenuated and small ones amplified. The paper argues that this prevents PDE residuals from dominating boundary and initial terms, so boundary satisfaction improves across multi-scale or multi-frequency regimes [2308.06672].

A common misconception is that multi-scale boundary loss must be equivalent to distance-transform supervision. The recent literature contradicts this. CWMI and SPW are spectral; BCL is shift-based and OHEM-driven; cbDice is skeleton- and distance-based; the PINN formulation is magnitude-balanced. The unifying property is multi-scale boundary emphasis, not any single geometric representation.

## 5. Empirical evidence and comparative performance

The clearest direct benchmark for a multi-scale boundary loss appears in CWMI. On SNEMI3D, GlaS, DRIVE, and Massachusetts Roads, the paper reports gains in regional and topological metrics together with major Hausdorff Distance improvements [2502.00563]. For U-Net, SNEMI3D HD improves from $1.21$ with CE to $0.69$ with CWMI, a $-0.52$ absolute change or $-43\%$. On DRIVE, U-Net HD improves from $2.37$ to $1.07$, a $-54.9\%$ change. On GlaS, U-Net HD improves from $3.13$ to $2.47$, or $-21.1\%$. The same paper reports improvements in mIoU, mDice, VI, and ARI across all four datasets.

SPW reports results on SNEMI3D, GlaS, and DRIVE against 11 baselines: CE, BCE, Dice, Focal, Jaccard, Tversky, WCE, ABW, Skea-topo, RMI, and clDice [2503.06604]. The reported mean $\pm$ std scores are $0.770 \pm 0.003$ mIoU and $0.864 \pm 0.002$ mDice on SNEMI3D, $0.851 \pm 0.005$ mIoU and $0.916 \pm 0.003$ mDice on GlaS, and $0.784 \pm 0.010$ mIoU and $0.867 \pm 0.008$ mDice on DRIVE. The paper does not report edge F1, Hausdorff, or clDice, but interprets lower VI and higher ARI on thin-structure datasets as evidence of better instance separation and boundary quality.

BCMFNet provides a distinct kind of evidence because its boundary loss is part of a real-time architecture. On Cityscapes, BCMFNet reports $78.2\%$ mIoU at $103.4$ FPS, compared with the DDRNet-s baseline at $77.4\%$ mIoU and $101.6$ FPS [2203.00436]. The ablation isolates the effect of the loss: BASE yields $76.8\%$ mIoU, adding LMFM gives $77.6\%$, and adding both LMFM and BCL gives $78.2\%$. The paper interprets this as contextual improvement from low-resolution fusion plus recovery of boundary quality through BCL.

cbDice reports performance across 2D and 3D vascular segmentation tasks [2407.01517]. On DRIVE, peak Dice is $82.5\%$, clDice $82.4\%$, and NSD $87.2\%$ at $\beta = 0.5$. On TopCoW 2023, nnU-Net with cbDice and $(\alpha=1,\beta=2)$ reports Dice(S) $43.38\%$ versus clDice $38.46\%$, with NSD(S) $54.11$. NexToU with cbDice reaches Dice(S) $48.43\%$ and NSD(S) $58.91$ for $\beta=3$, or NSD(S) $57.71$ with reduced Betti errors for $\beta=2$. The paper emphasizes gains on small communicating arteries, which are precisely the type of fine structure that multi-scale boundary losses aim to protect.

For PINNs, the evidence is not segmentation accuracy but boundary-condition enforcement under multi-magnitude terms. On a heat equation with $\epsilon = 0.15$, MMPINN-DNN reports relative $L_2$ error $5.01\mathrm{e}{-4}$, compared with SA-PINN at $1.76\mathrm{e}{-3}$ and conventional PINN at approximately $1.07\mathrm{e}{0}$ [2308.06672]. On 1D multi-frequency Poisson, MMPINN-MFF reaches $6.94\mathrm{e}{-4}$ versus MFF at approximately $1.41\mathrm{e}{-2}$. The paper states that without power regularization, boundary losses can increase during training, whereas with regularization boundary and residual losses decrease together.

### Representative reported results

| Method | Setting | Reported result |
|---|---|---|
| CWMI | SNEMI3D, U-Net | HD $1.21 \rightarrow 0.69$; mIoU $0.751 \rightarrow 0.779$ [2502.00563] |
| CWMI | DRIVE, U-Net | HD $2.37 \rightarrow 1.07$; mDice $0.856 \rightarrow 0.880$ [2502.00563] |
| SPW | GlaS | mIoU $0.851 \pm 0.005$; mDice $0.916 \pm 0.003$ [2503.06604] |
| BCMFNet + BCL | Cityscapes | $78.2\%$ mIoU at $103.4$ FPS [2203.00436] |
| cbDice | TopCoW, nnU-Net | Dice(S) $43.38\%$; NSD(S) $54.11$ [2407.01517] |

These results support a consistent interpretation: when the target structures are thin, elongated, densely packed, or topologically fragile, multi-scale boundary losses tend to improve not only contour quality but also global topology-oriented metrics such as VI, ARI, NSD, or Betti-derived scores.

## 6. Computational properties, implementation, and reproducibility

A recurrent design goal is to increase boundary sensitivity without introducing prohibitive overhead.

CWMI reports explicit complexity estimates. For image size $H \times W$ and $K$ orientations, the first-scale cost combines FFT, filtering, inverse FFT, and MI terms; summed over pyramid levels, the overall complexity is

$$
O\!\left(\frac{4}{3}\,HW\,(K\log(HW)+K^2)\right).
$$

With $K=4$, the paper states that complexity scales effectively as $O(HW \log(HW))$. On SNEMI3D/U-Net, the measured per-epoch training time is $2.04$ s for CE and $2.27$ s for CWMI, a $+0.23$ s overhead [2502.00563]. Implementation uses PyTorch, FFT-based filtering, and real-valued representations for complex tensors.

SPW reports similar practical efficiency. For an $H \times W$ input and $K$ orientations, decomposition plus envelope computation and upsampling has complexity $O(HWK\log(HW))$, reducing to $O(HW\log(HW))$ in practice for $K=4$ [2503.06604]. On SNEMI3D with U-Net, CE takes $2.04$ s per epoch and SPW takes $2.20$ s, a $+0.17$ s overhead. The paper notes that ABW, clDice, and Skea-topo are slower in the reported setup. Weight computation is performed under `torch.no_grad()`, and gradients flow only through the base loss, not through the weight map.

The recommended hyperparameters in SPW are $N=4$ scales, $K=4$ orientations, $\beta=0.9$, and $\lambda=10$, with standard class weights $w_c$ if needed [2503.06604]. CWMI likewise reports that $N=4$ and $K=4$ gave the best trade-offs in ablation, and uses $\lambda=0.1$ when combining CWMI with CE [2502.00563].

BCMFNet’s computational story is different: BCL is designed to add negligible cost at training time and zero cost at inference. The heavy lifting remains in low-resolution multi-scale fusion, while the loss adds only label shifts, per-pixel cross-entropy maps, non-maximum suppression, and masking [2203.00436]. This explains why the model can preserve real-time speed.

cbDice requires differentiable skeletonization and Euclidean distance transforms per forward pass. The paper uses PyTorch 2.1 on nnU-Net V2, differentiable skeletonization from Menten et al. (ICCV 2023), and cuCIM GPU EDT [2407.01517]. It characterizes the extra cost as modest and comparable to other auxiliary-map losses. Stability is supported by clipping distances to $R_{\max}$, normalization by $R_{\max}$ and $I_{\min}$, and $\epsilon$-stabilization for inverse-radius terms.

PINN power-regularization has negligible loss-side overhead because it adds only fractional powers and summations, though grouping residuals across subdomains introduces some bookkeeping [2308.06672]. The dominant additional cost in that setting comes from architecture choices such as MFF or INN rather than from the loss reconstruction itself.

The reproducibility patterns across these works are notable. CWMI and SPW both use Adam, StepLR with initial learning rate $10^{-4}$, decay $0.8$ every 10 epochs, 50 epochs, batch size 10, and early stopping on mIoU [2502.00563], [2503.06604]. This suggests that the comparison between direct spectral alignment and spectral weighting was conducted under closely matched training settings.

## 7. Limitations, trade-offs, and relations to adjacent loss families

Despite their shared motivation, multi-scale boundary losses do not solve the same problem in the same way, and each carries specific limitations.

CWMI depends on covariance-based mutual-information estimation. The paper states that poorly conditioned covariances or extreme class imbalance can affect stability, that many subbands increase memory footprint, and that the method depends on filter design [2502.00563]. Multi-class and 3D extensions are described as feasible but not validated in that study. The recommendation to add small diagonal regularization to covariance inverses is presented as practical guidance rather than as part of the reported experiments.

SPW is validated on 2D biomedical datasets only and is untested for 3D volumetric segmentation in the paper [2503.06604]. Because it up-weights high-frequency content, textures unrelated to true boundaries may also be emphasized if they are prominent. The paper notes that $\beta$ and $\lambda$ need tuning to avoid over-emphasizing noise, and that SPW augments rather than replaces class weighting.

BCL depends on the choice of step sizes and thresholds. If the shift is too small, true boundary errors may be missed; if it is too large, the selected mask can drift into interiors [2203.00436]. The paper also notes that extremely thin structures may still be smoothed by low-resolution fusion and that BCL may not fully recover them without some high-resolution processing.

cbDice depends on skeleton quality and uses EDT as a fixed transform per forward pass, so gradients do not propagate through distances themselves [2407.01517]. Extremely noisy ultra-thin structures may be over-emphasized by inverse-radius weighting, and increasing the boundary/scale weight $\beta$ too much may slightly reduce raw Dice on large vessels. Its formulation is especially natural for tubular or curvilinear structures; this suggests that its transfer to non-tubular objects may require careful reinterpretation of skeletons and local thickness.

In PINNs, the principal limitation is sensitivity to exponent choice. Excessively small powers can flatten gradients and slow or stall learning, and the paper explicitly advises against very large exponents such as $n \gg 3$ [2308.06672]. Moreover, loss balancing alone cannot compensate for inadequate representational capacity in high-frequency boundary regimes; MFF or INN may still be required.

Relative to adjacent loss families, the papers draw several distinctions. CWMI contrasts itself with boundary-aware geometric losses such as Boundary Loss with SDF, Hausdorff distance loss, and clDice, characterizing them as computationally heavy or specialized, whereas CWMI is frequency-domain, orientation-selective, multi-scale, and robust to small misalignments and noise [2502.00563]. SPW distinguishes itself from distance-transform weighting by emphasizing prediction adaptivity and FFT efficiency [2503.06604]. cbDice positions itself as matching the translation sensitivity of B-DoU while preserving the topological advantages of clDice [2407.01517]. BCMFNet places BCL against contour branches, post-processing methods, and explicit edge optimization, emphasizing its simplicity and inference-time neutrality [2203.00436].

Taken together, these comparisons indicate that the field has moved away from a narrow opposition between region losses and boundary losses. Current multi-scale boundary losses increasingly combine topology, frequency structure, distance geometry, and adaptive weighting, and they do so in ways tailored to specific object classes and deployment constraints. A plausible implication is that future formulations will continue to hybridize these ingredients rather than converge on a single canonical objective.

Source: https://www.emergentmind.com/topics/multi-scale-boundary-loss