Controllable Histopathology Image Synthesis with Training-free Structural Initialization and Textural Modulation


Abstract

Deep learning has demonstrated remarkable success in high-throughput histopathology image analysis. However, the performance of learning-based models critically depends on the quality and size of annotation by expert pathologists—a resource-intensive and time-consuming process. To address the limitations of data scarcity and annotation burden, several methods have been proposed to synthesize paired histopathology data. Nevertheless, these frameworks typically still require annotation data, albeit in reduced quantities, to impose structural constraints during training. In this work, we present CHIS, a plug-in framework that guides the sampling trajectory of a pretrained diffusion model through two key stages: structural initialization at the start and textural modulation during generation. The initial noise state is refined by fusing the phase information from a prior mask with the amplitude of Gaussian noise in the frequency domain, yielding a structurally-informed starting point. During the reverse diffusion process, we adaptively modulate both coarse- and fine-grained textures at different wavelet decomposition levels. This enables a diffusion model pretrained solely on unlabeled images to generate outputs that align with prior structural masks while preserving the reference tissue style. We conducted extensive experiments demonstrating the superiority of CHISin generation fidelity and its substantial benefits for downstream segmentation tasks. Code is available at https://github.com/IBIL-Code/CHIS.

1 Introduction↩︎

Histopathology remains the gold standard for diagnosis and grading because of its ability to distinguish benign from malignant tissue [1]. Learning-based algorithms now enable high-throughput analysis of whole-slide images, supporting automatic annotation and AI-assisted reporting with user-defined quantitative metrics that reduce pathologists’ workload [2], [3]. However, model accuracy depends critically on the quantity and quality of labeled training data, which is expensive and time-consuming to obtain in routine clinical workflows. Synthetic data generation therefore offers a practical solution to alleviate annotation scarcity. While generative adversarial networks (GANs) can learn with weak or unpaired supervision, they often introduce artifacts that compromise diagnostic realism [4], [5]. Diffusion models typically achieve higher fidelity and better conditional control, but most existing approaches require paired supervision for training [6], [7]. Cycle-diffusion methods attempt unpaired translation but unfortunately suffer from noisy-clean domain mismatch, substantially increasing computational cost [8], [9]. Furthermore, standard Gaussian initialization inevitably induces structural misalignment during generation [10], [11].

Figure 1: Overview of our proposed CHISfor controllable histopathology image synthesis.

In this work, we propose CHIS, a training-free framework that guides pretrained diffusion models to generate structure-aligned histopathology images (Fig. 1). Given a diffusion model trained solely on unlabeled histopathology images, our CHISfirst generates a prior mask to regulate the spatial location of generated cells. For the starting point of the reverse sampling process, we leverage the insight that phase information primarily encodes structural contours and refine the initialization by fusing the phase of the prior mask with the magnitude of Gaussian noise in the frequency domain. Subsequently, fine-grained textures progressively interact with the dynamic sampling states through adaptive aggregation of wavelet components. The enhanced diffusion model ultimately delivers synthesized data that are not only stylistically consistent but also structurally controllable. Comprehensive evaluations demonstrate the superiority of CHISin image quality, mask-structure fidelity, and downstream segmentation performance.

2 Method↩︎

In this section, we first introduce the pretrained diffusion model that serves as the backbone of CHIS. We then present an efficient framework for generating prior masks. In the following two subsections, we sequentially describe our strategies for refining the initialization state and guiding the reverse diffusion sampling process.

2.1 Pretrained Diffusion Model with Histopathology Images↩︎

We select the Latent Diffusion Model (LDM) [12] as our generative backbone, which shifts the learning of complex image distributions from the high-dimensional pixel space \(\mathbf{X}\) to a compressed latent space \(\mathbf{Z}\). Given a histopathology image \(x \in \mathbf{X}\), a pretrained VAE encoder \(\mathcal{E}\) maps it to a latent representation \(z_0 = \mathcal{E}(x)\). The forward diffusion process progressively adds Gaussian noise to \(z_0\) over \(T\) timesteps. For any timestep \(t \in [0, T]\), the noisy latent \(z_t\) is defined as: \[z_t = \sqrt{\bar{\alpha}_t} z_0 + \sqrt{1-\bar{\alpha}_t} \epsilon, \quad \epsilon \sim \mathcal{N}(0, \mathbf{I}) \label{eq:forward}\tag{1}\] where \(\bar{\alpha}_t\) follows a predefined noise schedule. The reverse denoising process follows the DDIM [13] formulation: \[z_{t-1} = \sqrt{\bar{\alpha}_{t-1}} \left(\frac{z_t - \sqrt{1-\bar{\alpha}_t}\,\epsilon_\theta(z_t,t)}{\sqrt{\bar{\alpha}_t}}\right) + \sqrt{1-\bar{\alpha}_{t-1}}\,\epsilon_\theta(z_t,t) \label{eq:reverse}\tag{2}\] where the denoising network \(\epsilon_\theta(z_t, t)\) predicts the noise added to \(z_t\), allowing deterministic reconstruction of \(\hat{z}_0\) from \(z_T \sim \mathcal{N}(0, \mathbf{I})\) step-by-step. The learnable model \(\epsilon_\theta\) is pretrained solely on unlabeled histopathology images and remains frozen in our proposed CHIS. Finally, the VAE decoder \(\mathcal{D}\) produces synthesized images by \(\hat{x}_0 = \mathcal{D}(\hat{z}_0)\). In the following sections, we will describe how CHISensures the spatial distribution of cells in \(\hat{x}_0\), starting from a random state \(z_T\), can be precisely controlled by masks \(y\in\mathbf{Y}\) generated in Section 2.2.

2.2 Generation of Histopathology Mask with Cell Aggregation↩︎

To facilitate the generation of histopathology masks, we propose an efficient framework for aggregating single-cell masks with geometric priors ( in Fig. 1). Given a collection of cell masks, the synthesis of a histopathology mask \(y\) can be formulated as an aggregation process constrained by three category-specific metrics: cell count, mask area, and inter-cell distance, denoted as \(\{count, area, dist\}\). These metrics can be either derived from the mask collection or specified directly by pathologists.

To aggregate cell masks into a histopathology mask, we partition \(count\) cells into two groups: clustered cells and isolated cells. We first generate cell clusters by sequentially sampling cells from the collection and positioning them together within the specified \(dist\) threshold. Each cell cluster is then treated as a super-cell and combined with isolated cells from the collection. The distances between all cells and super-cells are maintained above the preset \(dist\) threshold. Additionally, the size of each cell fluctuates around the geometric prior \(area\). This generated mask benefits downstream segmentation models through densely distributed clustered cells while preserving mask fidelity through the inclusion of isolated cells.

2.3 Structural Initialization with Spectral Decomposition↩︎

During the reverse sampling process, the initial state \(z_T\) largely determines the content of the denoised results. Rather than randomly sampling \(z_T\), we incorporate structural features from the mask \(y\)—specifically, the contours of cell masks—into \(z_T\) by decomposing \(y\) using the Fast Fourier Transform (FFT). As described in [14], structural information is primarily preserved in the phase component. We therefore refine \(z_T\) through structure-aligned phase fusion between the mask \(y\) and Gaussian noise \(z_T\) ( in Fig. 1).

For the latent diffusion model, the encoder \(\mathcal{E}\) transforms the input into a latent feature map. Although \(\mathcal{E}\) can directly accept the mask \(y\), we observe a significant distribution shift in \(\mathcal{E}(y)\) when a binary mask \(y\) differs substantially from the pretraining data (i.e., histopathology images). To address this issue, we apply an extract-and-fill procedure to roughly colorize the regions of \(y\). Specifically, we first select a reference histopathology image \(x^\text{ref}\) and apply Otsu thresholding to obtain its coarse segmentation in the optical density domain. The background regions of \(y\) are then filled with the average color of the corresponding regions in \(x^\text{ref}\). To enhance the textural features of foreground cells in \(y\), pixels are colored according to the average color of pixels at the same boundary distance in \(x^\text{ref}\). Finally, we obtain \(\hat{y}\) with a color style similar to that of \(x^\text{ref}\).

Based on the refined input \(\hat{y}\), we obtain the latent feature \(\hat{z}^\text{ref}_0=\mathcal{E}(\hat{y})\). The FFT operation \(\mathcal{F}\) is applied to \(\hat{z}^\text{ref}_0\) and \(z_T\): \[\mathcal{F}(\hat{z}^\text{ref}_0)=A^\text{ref}\exp(j\phi^\text{ref}),\quad\mathcal{F}(z_T)=A^\text{noise}\exp(j\phi^\text{noise})\] where \(A^{\cdot}\) and \(\phi^{\cdot}\) denote the amplitude and phase parts, respectively. These two parts are subsequently mixed with \[A^\text{mix}=A^\text{noise},\quad\phi^\text{mix}=\Theta(r)\odot\phi^\text{ref} +(1-\Theta(r))\odot\phi^\text{noise}\] where \(\Theta(r)\) is a low-pass filter that keeps phase only within a cutoff radius \(r\). The structure-aligned state comes with inverse FFT \(z^\text{mix}_T=\mathcal{F}^{-1}(A^\text{mix}\exp(j\phi^\text{mix}))\). With different \(r\), we can control the degree of structural preservation regarding mask \(y\). Additionally, the style of \(z^\text{mix}_T\) can be easily changed by selecting another \(x^\text{ref}\) even without any annotations.

2.4 Adaptive Textural Modulation with Wavelet Fusion↩︎

Beyond structural alignment, textural similarity also contributes to the fidelity of generated images and further reinforces structural consistency. Here we propose wavelet-based guidance to progressively enhance textural details in \(z^\text{mix}_t\) and improve structure–texture coherence during the reverse diffusion process ( in Fig. 1). We employ the stationary wavelet transform (SWT) \(\mathcal{S}\) to decompose both the evolving latent \(z^\text{mix}_t\) and the prior guidance \(\hat{z}^\text{ref}_t\) into coarse- and fine-grained texture components, yielding \[\mathcal{S}(z^\text{mix}_t)=\{L^\text{mix}_t, H^\text{mix}_t\},\quad \mathcal{S}(\hat{z}^\text{ref}_t)=\{L^\text{ref}_t, H^\text{ref}_t\}\] where the coarse texture \(L^\cdot_t=[LL^\cdot_t]\) and fine-grained texture \(H^\cdot_t=[LH^\cdot_t\mid HL^\cdot_t\mid HH^\cdot_t]\) correspond to low- and high-frequency components in the frequency domain, respectively [15].

Since the coarse texture \(L^\text{mix}_t\) depicts the overall contours in \(z^\text{mix}_t\), we aim to align it with \(L^\text{ref}_t\). Hence, the distribution of \(L^\text{mix}_t\) is shifted using the mean \(\mu(\cdot)\) and standard deviation \(\sigma(\cdot)\) via: \[\tilde{L}^\text{mix}_t = \sigma(L^\text{mix}_t)\,\frac{L^\text{ref}_t - \mu(L^\text{ref}_t)}{\sigma(L^\text{ref}_t)} + \mu(L^\text{mix}_t), \label{eq:adain}\tag{3}\] Then we modulate foreground and background textures based on three rules: i) Relaxed constraints on background textures; ii) Primary reliance on \(\hat{z}^\text{ref}_t\) for low-frequency contour textures; iii) Reduced guidance on detailed high-frequency textures. Three hyperparameters \(\gamma\), \(\chi\) and \(\zeta\) were set accordingly to control the degree of texture modulation. Thereafter, the final weights for modulating low- and high-frequency components are given by \(\omega_L=\delta_{\{y,1\}}\chi+ \delta_{\{y,0\}}\gamma\) and \(\omega_H = \delta_{\{y,1\}}\zeta+\delta_{\{y,0\}}\gamma\), where \(\delta\) represents the Kronecker delta function. These two weights guide the modulation with weighted summation \[\tilde{L}^\text{mix}_t = \omega_L \cdot\hat{L}^\text{mix}_t + (1-\omega_L) \cdot L^\text{mix}_t, \quad \tilde{H}^\text{mix}_t = \omega_H \cdot H^\text{ref}_t + (1-\omega_H) \cdot H^\text{mix}_t, \label{eq:blend}\tag{4}\] Finally, the inverse SWT transforms the components \(\tilde{L}^\text{mix}_t\) and \(\tilde{H}^\text{mix}_t\) back into the spatial domain \(z^\text{mix}_t\), status for the next sampling step. This process repeats during the early sampling stage, until the textures are well consolidated by \(\hat{z}^\text{ref}_t\).

3 Experiments↩︎

3.1 Implementation Details↩︎

While CHISis framework-agnostic across diffusion-based models, we instantiate it on PixCell [16], a backbone pretrained on large-scale histopathology images that synthesizes realistic tissue but leaves cellular structure uncontrolled. We keep PixCell frozen, preserving all parameters and its foundation-feature conditioning; CHISacts only on the sampling trajectory: it replaces the initial noise at \(t{=}T\) with a phase-fused latent, applies textural guidance over the first 40 steps with \(\gamma=0.2\), \(\chi=0.95\), and \(\zeta=0.6\), and lets PixCell run freely in the final 10 steps.

We evaluate CHISon three histopathology datasets: MoNuSAC [17], Kumar [18], and PanNuke [19], with an 80/20 split for training/test data. For comparison, we select various baseline methods representing different approaches, including fully supervised models (NuDiff [7], SDM [6]), GAN-based models (SynDiff [20], CycleDiff [9]), and training-free models (UGDM [21], ADMMDiff [22]). For all methods, the number of synthesized images matches that of the training split in each dataset. The synthesized images are assessed from three perspectives: (i) evaluate their alignment to prior masks using a binary segmentation model; (ii) investigate their benefits to downstream instance segmentation model; (iii) measure their fidelity compared to real datasets. Detailed experimental settings are introduced in the corresponding sections.

cc cc cc cc cc & & & & &
(lr)4-5 (lr)6-7 (lr)8-9 & & & FS1\(\uparrow\) & HD95\(\downarrow\) & FS1\(\uparrow\) & HD95\(\downarrow\) & FS1\(\uparrow\) & HD95\(\downarrow\)
SDM [6] & \(\circ\) & \(\circ\) & 0.7462 & 30.8448 & 0.8167 & 24.9139 & 0.7669 & 19.4987
NuDiff [7] & \(\circ\) & \(\circ\) & 0.8232 & 22.3510 & 0.8264 & 22.7506 & 0.7953 & 17.1287
SynDiff [20] & \(\circ\) & \(-\) & 0.0586 & 90.0501 & 0.0025 & 243.4370 & 0.2150 & 37.6211
CycleDiff [9] & \(\circ\) & \(-\) & 0.0874 & 62.3175 & 0.2002 & 80.4365 & 0.1343 & 45.1336
UGDM [21] & \(-\) & \(-\) & 0.1346 & 65.8139 & 0.1023 & 85.4937 & 0.1744 & 51.5747
ADMMDiff [22] & \(-\) & \(-\) & 0.5586 & 43.9161 & 0.4932 & 63.2756 & 0.5755 & 32.2030
CHIS(ours) & \(-\) & \(-\) & 0.8032 & 22.6473 & 0.8671 & 14.9272 & 0.7853 & 20.3174

0pt

@ c cc cc cc cc @ & & & & &
(lr)4-5 (lr)6-7 (lr)8-9 & & & Dice\(\uparrow\) & AJI\(\uparrow\) & Dice\(\uparrow\) & AJI\(\uparrow\) & Dice\(\uparrow\) & AJI\(\uparrow\)
Baseline & & &0.7742 &0.5822 &0.8078 &0.5746 &0.7741 &0.5861
CutOut [23] & \(-\) & \(-\) &0.8160 &0.6343 &0.8244 &0.6063 &0.7883 &0.6046
CutMix [24] & \(-\) & \(-\) &0.8189 &0.6368 &0.8256 &0.6089 &0.7885 &0.6021
SDM [6] & \(\circ\) & \(\circ\) & 0.8128 & 0.6375 & 0.8280 & 0.6252 & 0.7945 & 0.6074
NuDiff [7] & \(\circ\) & \(\circ\) & 0.8223 & 0.6422 & 0.8242 & 0.6097 & 0.7930 & 0.6101
CycleDiff [9] & \(\circ\) & \(-\) &0.8116 &0.6259 &0.8191 &0.6015 &0.7766 &0.5896
SynDiff [20] & \(\circ\) & \(-\) &0.8186 &0.6348 &0.8228 &0.6044 &0.7883 &0.6012
UGDM [21] & \(-\) & \(-\) &0.8152 &0.6324 &0.8212 &0.6031 &0.7806 & 0.5884
ADMMDiff [22] & \(-\) & \(-\) &0.8181 &0.6366 &0.8213 &0.6082 &0.7873 &0.6025
CHIS(Ours) & \(-\) & \(-\) &0.8224 &0.6437 &0.8271 &0.6238 &0.7895 &0.6046

0pt

@ c cc cc cc cc @ & & & & &
(lr)4-5(lr)6-7(lr)8-9 & & & FID\(\downarrow\) & IS\(\uparrow\) & FID\(\downarrow\) & IS\(\uparrow\) & FID\(\downarrow\) & IS\(\uparrow\)
SDM [6] & \(\circ\) & \(\circ\) & 10.0452 & 2.6973 & 5.7759 & 3.2963 & 7.8278 & 2.9161
NuDiff [7] & \(\circ\) & \(\circ\) & 10.6155 & 3.4152 & 7.5344 & 2.9655 & 6.3651 & 2.6072
CycleDiff [9] & \(\circ\) & \(-\) & 12.0908 & 2.5262 & 12.2660 & 2.0854 & 12.2660 & 2.3193
SynDiff [20] & \(\circ\) & \(-\) & 13.0348 & 1.5896 & 11.1433 & 1.3745 & 11.1433 & 1.7235
UGDM [21] & \(-\) & \(-\) & 7.7972 & 3.0428 & 5.9682 & 2.5637 & 5.9761 & 2.3408
ADMMDiff [22] & \(-\) & \(-\) & 9.1775 & 3.1139 & 5.4475 & 3.1627 & 6.3033 & 2.8059
CHIS(Ours) & \(-\) & \(-\) & 7.7772 & 4.2514 & 5.4099 & 3.2250 & 5.8926 & 3.4731

3.2 Alignment Between Prior Mask and Synthesized Image↩︎

Inspired by [10], we adapt zero-shot nnU-Net [25] to segment the synthesized images and then evaluate the consistency between the segmentation results and the prior masks. As shown in Table [tab:fs195hd95], our CHISachieves the best performance in preserving the structural information from the guidance masks. Although GAN-based models excel at style transformation with unpaired data, both SynDiff and CycleDiff fail to regulate mask-to-image correspondence. To refine structural details, UGDM and ADMMDiff steer the sampling trajectory by anchoring the reverse diffusion states. However, their inability to effectively modulate coarse- and fine-grained structures leads to performance degradation. Our CHIScarefully initializes the starting point with structural information and progressively modulates the dynamic states at different frequency components. The performance of our CHISapproaches that of the fully supervised model NuDiff and even exceeds it on the MoNuSAC dataset.

3.3 Improvement on Downstream Segmentation Task↩︎

To demonstrate the benefits of CHISfor downstream segmentation tasks, we augment the training dataset with synthesized images, doubling the size of each dataset. The performance of Hover-Net [26] is then compared before and after dataset expansion. In addition to the methods mentioned in Section 3.2, we also include comparisons with on-the-fly augmentation techniques CutOut [23] and CutMix [24]. As shown in Table [tab:dice95aji], CHISachieves the highest Dice and AJI scores among all competitive methods. Compared to the baseline, the segmentation performance gain from our framework is substantial, especially considering that it eliminates the need for data annotation and model training. Moreover, we observe that CHIS’s performance approaches that of fully supervised models SDM and NuDiff, which require substantial annotation and computational resources. The performance difference of NuDiff between Table [tab:fs195hd95] and Table [tab:dice95aji] indicates that synthesized images require not only overall contour alignment but also similarity in textural features. Only by achieving both aspects can we avoid introducing distribution shifts during model testing. This finding indirectly validates CHIS’s ability to balance both global structural integration and local feature preservation.

3.4 Image Quality Assessment of Synthesized Data↩︎

In this section, we compare the synthesized data directly with the real image dataset, where similarity is quantified using the image quality metrics FID [27] and IS [28]. When a style reference image is required for UGDM, ADMMDiff, and CHIS, we randomly select one from the corresponding training set. Quantitative results in Table [tab:fid95is] demonstrate the advantage of CHISin generating high-quality images with respect to visual perception. The improved performance of UGDM, ADMMDiff, and CHISshows that incorporating a reference during the reverse sampling process effectively regulates the style of generated content. In contrast, both supervised and GAN-based models focus on learning general distribution features from heterogeneous data, which inevitably leads to synthetic data exhibiting artifacts with mixed styles. In Fig. 2, we present three example results with their corresponding style references and prior masks. Our CHISachieves superior performance in terms of both cell distribution and style preservation.

Figure 2: Comparison of synthesized images from different methods.

4 Conclusion↩︎

In this work, we explore the feasibility of a controllable framework for histopathology image synthesis, addressing the critical challenge of limited data resources in clinical applications. Equipped with our training-free structural initialization and textural modulation modules, pretrained diffusion models can now achieve high mask-to-image faithfulness without requiring labor-intensive data annotation or substantial computational overhead. Experimental results demonstrate that our proposed CHISnot only rivals competitive works in generation quality, but also impressively improves downstream instance segmentation performance. As an efficient and scalable solution that bridges the gap between zero-shot efficiency and domain-specific precision, CHIShas the potential to advance various downstream applications, such as virtual staining and pathologist training.

References↩︎

[1]
A. H. Song et al., “Artificial intelligence for digital and computational pathology,” Nature Reviews Bioengineering, vol. 1, no. 12, pp. 930–949, 2023.
[2]
T. Ding et al., “A multimodal whole-slide foundation model for pathology,” Nature medicine, pp. 1–13, 2025.
[3]
A. Janowczyk and A. Madabhushi, “Deep learning for digital pathology image analysis: A comprehensive tutorial with selected use cases,” Journal of pathology informatics, vol. 7, no. 1, p. 29, 2016.
[4]
S. Butte, H. Wang, M. Xian, and A. Vakanski, “Sharp-gan: Sharpness loss regularized gan for histopathology image synthesis,” in 2022 IEEE 19th international symposium on biomedical imaging (ISBI), 2022, pp. 1–5.
[5]
M. E. Tschuchnig, G. J. Oostingh, and M. Gadermayr, “Generative adversarial networks in digital pathology: A survey on trends and future potential,” Patterns, vol. 1, no. 6, 2020.
[6]
W. Wang et al., “Semantic image synthesis via diffusion models,” arXiv preprint arXiv:2207.00050, 2022.
[7]
X. Yu et al., “Diffusion-based data augmentation for nuclei image segmentation,” in International conference on medical image computing and computer-assisted intervention, 2023, pp. 592–602.
[8]
P. Zhu, C. Liu, Y. Fu, N. Chen, and A. Qiu, “Cycle-conditional diffusion model for noise correction of diffusion-weighted images using unpaired data,” Medical image analysis, p. 103579, 2025.
[9]
S. Zou, Y. Huang, R. Yi, C. Zhu, and K. Xu, “CycleDiff: Cycle diffusion models for unpaired image-to-image translation,” arXiv preprint arXiv:2508.06625, 2025.
[10]
M. Bhosale et al., “Pathdiff: Histopathology image synthesis with unpaired text and mask conditions,” in Proceedings of the IEEE/CVF international conference on computer vision, 2025, pp. 22415–22424.
[11]
Y. Li et al., “Zero-shot medical image translation via frequency-guided diffusion models,” IEEE transactions on medical imaging, vol. 43, no. 3, pp. 980–993, 2023.
[12]
R. Rombach, A. Blattmann, D. Lorenz, P. Esser, and B. Ommer, “High-resolution image synthesis with latent diffusion models,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 10684–10695.
[13]
J. Song, C. Meng, and S. Ermon, “Denoising diffusion implicit models,” in International conference on learning representations (ICLR), 2020, [Online]. Available: https://openreview.net/forum?id=PxTIG12RRHS.
[14]
Y. Zeng, C. Ochoa, M. Zhou, V. M. Patel, V. Guizilini, and R. McAllister, “NeuralRemaster: Phase-preserving diffusion for structure-aligned generation,” arXiv preprint arXiv:2512.05106, 2025.
[15]
W.-C. Huang and L.-W. Chang, “Predictive subband image coding with wavelet transform,” Signal processing: Image communication, vol. 13, no. 3, pp. 171–181, 1998.
[16]
S. Yellapragada et al., “PixCell: A generative foundation model for digital histopathology images,” arXiv preprint arXiv:2506.05127, 2025.
[17]
R. Verma et al., “MoNuSAC2020: A multi-organ nuclei segmentation and classification challenge,” IEEE Transactions on Medical Imaging, vol. 40, no. 12, pp. 3413–3423, 2021, doi: 10.1109/TMI.2021.3085712.
[18]
S. Graham, D. Epstein, and N. Rajpoot, “Dense steerable filter cnns for exploiting rotational symmetry in histology images,” IEEE Transactions on Medical Imaging, vol. 39, no. 12, pp. 4124–4136, 2020.
[19]
J. Gamper, N. A. Koohbanani, K. Benet, A. Khuram, and N. Rajpoot, “PanNuke: An open pan-cancer histology dataset for nuclei instance segmentation and classification,” in European congress on digital pathology, 2019, pp. 11–19.
[20]
M. Özbey et al., “Unsupervised medical image translation with adversarial diffusion models,” IEEE Transactions on Medical Imaging, vol. 42, no. 12, pp. 3524–3539, 2023.
[21]
A. Bansal et al., “Universal guidance for diffusion models,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2023, pp. 843–852.
[22]
Y. Zhang, Z. Liu, Z. Li, Z. Li, J. J. Clark, and X. Si, “Decoupling training-free guided diffusion by ADMM,” in Proceedings of the computer vision and pattern recognition conference, 2025, pp. 23292–23302.
[23]
T. DeVries and G. W. Taylor, “Improved regularization of convolutional neural networks with cutout,” arXiv preprint arXiv:1708.04552, 2017, [Online]. Available: https://arxiv.org/abs/1708.04552.
[24]
S. Yun, D. Han, S. J. Oh, S. Chun, J. Choe, and Y. Yoo, “CutMix: Regularization strategy to train strong classifiers with localizable features,” in Proceedings of the IEEE/CVF international conference on computer vision (ICCV), 2019, pp. 6023–6032, doi: 10.1109/ICCV.2019.00612.
[25]
F. Isensee, P. F. Jaeger, S. A. Kohl, J. Petersen, and K. H. Maier-Hein, “nnU-net: A self-configuring method for deep learning-based biomedical image segmentation,” Nature methods, vol. 18, no. 2, pp. 203–211, 2021.
[26]
S. Graham et al., “Hover-net: Simultaneous segmentation and classification of nuclei in multi-tissue histology images,” Medical image analysis, vol. 58, p. 101563, 2019.
[27]
A. Radford et al., “Learning transferable visual models from natural language supervision,” in International conference on machine learning, 2021, pp. 8748–8763.
[28]
T. Salimans, I. Goodfellow, W. Zaremba, V. Cheung, A. Radford, and X. Chen, “Improved techniques for training gans,” Advances in neural information processing systems, vol. 29, 2016.

  1. Corresponding author: caojianfeng@hit.edu.cn↩︎