JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021
1
No Prompt, No Leaks: A Robust Generative Steganography Framework via Prompt-Free Diffusion
arXiv:2606.31427v1 [cs.CV] 30 Jun 2026
Jingwen Cai, Fen Xiao, Shuhua Deng, Xieping Gao, Member, IEEE,
Abstract—Generative image steganography synthesizes stego images directly from secret information to achieve inherent security advantages. Latent Diffusion Models (LDMs) have recently emerged as a fundamental image steganography framework that modulates secret latent representations with text prompts. Limited by the inflexibility of text prompts, these methods still struggle to generate high-quality stego images and accurately recover secret images. In this work, we propose a prompt-free diffusion image steganography framework that integrates style semantic priors to control more robust and reliable stego image generation. Specifically, a Cascaded Affine Coupling Module (CACM) establishes a bijective, deterministic mapping between a secret image and its latent representation. Then, style semantics are integrated into the diffusion process to control latent representation and ensure visual imperceptibility in the generated stego images. To mitigate trajectory deviations stemming from the unconditioned reverse process, a predictor-corrector mechanism is introduced to iteratively refine the generation trajectory via feedback from the current and predicted next states. Extensive experimental results show that the proposed method achieves competitive performance compared to state-of-the-art methods in terms of security, secret image reconstruction accuracy and controllability. Index Terms—Generative image steganography, diffusion model, robust steganography, prompt-free.
I. I NTRODUCTION Image steganography conceals secret information within a cover image to enable secure and imperceptible transmission. It has been widely deployed in various security-critical scenarios, including copyright protection [1], digital watermarking [2], and secure data communication [3]. Existing methods inherently involve a three-way trade-off among payload capacity, security against steganalysis, and robustness against channel distortions and malicious attacks. Traditional image steganography typically embeds secret data directly into a cover image by minimizing a predefined distortion function. However, this embedding process inevitably introduces artifacts into the stego images that can be easily detected by advanced steganalysis tools, thereby severely limiting the security of the steganographic system [4]. Jingwen Cai, Fen Xiao and Shuhua Deng are with the MOE Key Laboratory of Intelligent Computing and Information Processing, Xiangtan University, Xiangtan 411105, China (E-mail: Jenniewer [email protected]; [email protected]; [email protected]). (Corresponding authors: Fen Xiao and Shuhua Deng) Xieping Gao is with the College of Information Science and Engineering, Hunan Normal University, Changsha 410006, China (E-mail: [email protected]). Manuscript received May 15, 2026.
(a)
(b)
(c)
(d)
(e)
Fig. 1. Impact of prompt type on stego image visual quality given the same secret image and semantic content. (a) Secret image. (b) Coarse-grained text prompt (a tree). (c) Fine-grained text prompt (A massive ancient oak tree with deeply textured bark, complex branching structure, dense overlapping foliage, standing in a vast meadow at sunset). (d) Image prompt. (e) Reference image.
Generative steganography leverages significant advances in generative models to directly synthesize the stego image from secret information without relying on the cover image [5]. This property theoretically enhances the undetectability of the stego images. Early studies employed generative adversarial networks (GANs) [6], and flow-based models [7], which mapped secret data to noise vectors [8]–[11]. These methods can maintain high fidelity in recovered images. They suffer from insufficient robustness to cope with noise in realworld scenarios. To address this limitation, recent studies have introduced diffusion models into generative steganography [12]. Latent Diffusion Models (LDMs) [13] have attracted significant attention due to their inherent noise robustness, powerful generative capabilities, and computational efficiency. In this paradigm, the secret image is embedded into the latent representation, in which both the visual content of the stego image and the secret recovery are guided by user-provided text prompts [14]–[17]. Although text prompts offer enhanced controllability over the stego image, the semantic gap makes it difficult to ensure visual quality. Describing complex layouts, poses, shapes, and forms remains highly challenging and thus often leads to degradation in the generated stego image [18]. As shown in Fig. 1, three stego images generated by CRoSS [12] for the same secret image and share semantic content (“tree”), yet their visual quality differs dramatically depending on the type of text prompt. As shown in Fig. 1(b), coarse-grained prompt ”a tree” fails to sufficiently guide the generation process, which introduces obvious artifacts into the resulting stego image. While finer-grained prompts (e.g.a sentence), shows in Fig. 1(c), can improve stego image quality to some extent, better aligning the generated images with user intent still requires numerous trial-and-error prompt edits. This process is not only often impractical but also inevitably increases
JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021
the generation cost [18], [19]. To reduce manual prompt engineering, we also follow the prior work [20] by using a reference image for structural guidance, as shown in Fig. 1(e). However, the resulting stego image shown in Fig. 1(d) leaks content both from the reference image and the secret image, which increases the risk of being detected by a steganalyzer. Beyond the above security risks, the transmission of text prompts introduces additional reliability issues. Since the diffusion model requires the prompt as a conditioning signal for secret recovery, the prompt must be transmitted alongside the stego image. However, as a semantic key transmitted over practical channels, it is vulnerable to noise and tampering attacks [21]. Given the high sensitivity of diffusion models, even minor perturbations to the prompt can severely disrupt the recovery process [15]. This disruption is further aggravated by iterative accumulation, which gradually drives the recovery trajectory away from its intended path [22], [23] and ultimately leads to failed secret reconstruction. Moreover, relying on a reference image as the recovery condition introduces lossy transmission [24], which further exacerbates the system’s unreliability in real-world scenarios. To address the above security and reliability challenges, we propose a prompt-free diffusion steganographic framework for robust image steganography. We first discuss replacing text prompts with semantic priors to guide realistic stego image generation. These priors, extracted from reference datasets via a Vision Transformer (ViT) [25], are used to avoid contentspecific overfitting in the stego process, thereby improving both generation security and visual quality. Although this design eliminates the transmission risk associated with text prompts, the absence of explicit semantic guidance inevitably increases the uncertainty of the reverse trajectory. An unconditional way is introduced to stabilize the recovery process in the prompt-free setting. This framework offers several advantages, including user-controllable stego generation and enhanced robustness against real-world transmission distortions. The main contributions of this work are as follows. 1) We introduce a prompt-free stego image generation scheme with semantic priors. A cascaded affine coupling module (CACM) is designed to establish a deterministic mapping between the secret image and its latent representation. Subsequently, semantic priors obtained from reference datasets via ViT are incorporated into this representation to guide authentic stego image generation. This approach substantially enhances both flexibility and security. 2) The proposed framework incorporates a predictorcorrector mechanism that iteratively refines the recovery trajectory without external conditioning. This mechanism uses residual feedback from the current and predicted next steps to correct the reverse trajectory, which stabilizes latent representation extraction even for degraded stego image. 3) Extensive experiments demonstrate that the proposed framework outperforms state-of-the-art (SOTA) image steganography methods. Quantitative and qualitative results further show that the framework enables flexible control over stego image generation while preserving
2
strong security against steganalysis. It also achieves superior recovery performance even in real transmission scenarios. The rest of this paper is organized as follows. Section II introduces some classical and diffusion-based generative image steganography. Section III introduces the proposed method in detail. Section IV presents extensive experimental results and analysis. Section V summarizes the paper. II. R ELATED W ORKS A. Modification-Based Image Steganography Traditional image steganography refers to the practice of concealing a secret image within a cover image in an unnoticed manner. Baluja [26] pioneered the use of deep neural networks for image steganography and later extended this framework [27] to conceal two secret images within a single cover image. Later studies incorporated GANs [6] into image steganography [28], where adversarial training is employed to embed a secret image into a cover image. The realistic appearance of the stego image ensures its security. SteganoGAN [29] introduces an adversarial network alongside the encoder and decoder networks for information embedding and extraction. This design enhances resistance to steganalysis. Recently, Invertible Neural Networks (INNs) have attracted attention in image steganography for establishing effective invertible mappings between secret and stego images [30]. HiNet [31] models the image concealing and revealing as the forward and backward processes of an invertible network, which drastically increases both the hiding security and recovering accuracy. DeepMIH [32] extends this paradigm to multi-image hiding by using the preceding stego image as guidance for embedding subsequent secret images. Subsequent works adopted different strategies to improve INNbased steganography. For instance, iSCMIS [33] incorporates spatial and channel attention for secure region-guided embedding, while MIGIIHNet [34] employs mutual information estimation between the lost information and the stego image to achieve accurate recovery. However, these methods all rely on modifying the cover image to hide the secret image, which inevitably leaves detectable traces and renders the stego images vulnerable to well-designed steganalysis methods [35], [36]. B. Diffusion-Based Generative Image Steganography Diffusion models [37], [38] have recently emerged as a powerful generative framework for image generation [39]–[41]. Among them, LDMs have attracted increasing attention in generative steganography [42]–[45] due to their superior image generation quality. Most existing methods rely on Denoising Diffusion Implicit Model (DDIM) inversion [37] to construct the mapping from the secret image to the latent space, while the semantic content of the stego image is specified by text prompts. CRoSS [12] and subsequent works [14] employ a text prompt to establish the mapping from the secret image to the latent space, while another text prompt is used to guide stego
JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021
3
Notable Random Sampling
Semantic-Aware Diffusion Module Semantic Prior csem
Update
Simulation Feature Injection
ViT
Cascaded Affine Coupling Module
xT
xT 1
x1
…
x0
1
xsecret
Recovery flow
xstego
(a) Hiding phase Shared parameters
Attacker
Trajectory Calibration Module
Cascaded Affine Coupling Module
xrec
xT 1
xT
Estimated state
x1
…
(b) Recovery phase
…
x0 Residual Comparator
Residual Comparator
xT1
Public channel
ref
Hiding flow
x1
x0
xstego
Simulated state
Fig. 2. The proposed prompt-free generative steganography framework mainly consists of three modules: CACM, SADM, and TCM. These modules are responsible for secret image embedding/decoding, stego image generation, and latent recovery, respectively.
image generation. Although this mechanism ensures that the secret image can be recovered only with the correct prompts, text prompts have limited expressive ability for constructing the secret-to-latent mapping. Only part of the secret image can be concealed, which still compromises system security. To improve the hiding capability in the latent space without relying on text prompts, subsequent studies introduce VQGAN compression [15] and scrambling transformations [16]. However, these methods still rely heavily on text prompts during stego image generation. Due to the limited ability of text prompts to describe complex visual details, the generated images may suffer from degraded visual quality [18], [19]. DiffStega [17] introduces pre-determined passwords to generate reference images. These reference images provide auxiliary guidance for stego image generation and improve the visual details. However, the resulting stego images may contain content from both the reference and secret images. The significant content overlap between the secret and stego images, which compromises the confidentiality and the undetectability of the steganographic system. In addition, stego images are often affected by lossy transmission in real-world scenarios, such as JPEG compression and Gaussian noise. These distortions may degrade the recovery accuracy. Existing work [46] has focused mainly on robustness against known channel attacks. However, secret recovery in these methods still relies heavily on text prompts. Text prompts must be transmitted together with the stego image to guide secret recovery. During transmission, they are vulnerable to noise interference and tampering attacks [21].
Even minor perturbations to the transmitted text prompts can introduce errors into the recovery trajectory. Diffusion models exhibit inherent numerical instability and high sensitivity to perturbations [24]. Through iterative accumulation in the recovery process, these errors may cause the recovered trajectory to deviate significantly from the original trajectory [22], [23]. Consequently, the reliance on text prompts poses a major challenge to robust recovery. III. M ETHOD As shown in Fig. 2, the proposed prompt-free generative image steganography framework consists of two stages. In the hiding phase, the secret image xsecret is deterministically mapped by Cascaded Affine Coupling Module (CACM) to the latent representation xT , which serves as the initial state of the diffusion process. In the Semantic-Aware Diffusion Module (SADM), a sampled semantic prior csem extracted from Dref by ViT is injected into the diffusion process to guide stego image generation. In the recovery phase, the received stego image x′stego is inverted through the Trajectory Calibration Module (TCM), which calibrates the recovery trajectory and obtains the latent representation x′T . The recovered image xrec is reconstructed from the x′T through the inverse transformation of CACM. A. Cascaded Affine Coupling Module The CACM is designed to transform the secret image xsecret into a latent representation xT that matches the input of
JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021
Z1
Z1 k 1
Forward Block …
× K-1
…
Z1
exp
k 1
Z 2 k
Z2
…
K
Forward Block
k
4
(k−1)
Ẑ2 Z 2 K
…
(a) Forward Block
ˆ k
× K-1
Ẑ1 0
…
Backward Block
Z1
Backward Block
Zˆ1 k 1
Zˆ 2 k
…
Zˆ 2 k 1
Fig. 3. Architecture of the proposed CACM. The forward block maps the secret image to the latent representation, and the backward block reconstructs the image through the inverse transformation.
the diffusion model. As shown in Fig. 3, CACM comprises forward and backward blocks with shared parameters, which are used for secret embedding and recovery, respectively. The initial feature Z (0) = xsecret is first split into two parts along (0) (0) the channel dimension, denoted as Z1 and Z2 . In the k-th (k−1) (k−1) forward block, Z2 first guides the update of Z1 . The (k) updated feature Z1 then generates the scale and shift terms (k−1) to adaptively compress Z2 through an affine coupling transformation. The forward block is formulated as follows: (k)
(k)
Z2
(k−1)
= Z2
(k−1)
= Z1
(k−1)
Ẑ1
(k)
(k)
⊖ η(Ẑ1 )) ⊘ exp(γ(ϑ(Ẑ1 ))), (k)
= Ẑ1
(k−1)
⊖ τ (Ẑ2
),
(5) (6)
where ⊘ denotes element-wise division, and ⊖ represents element-wise subtraction. After the last backward block, the secret image is reconstructed as Ẑ (0) = xrec . B. Semantic-Aware Diffusion Module
(b) Backward Block
Z1
(k)
= (Ẑ2
exp
Ẑ 2 0
In the recovery process, the reconstructed latent representation x̂T initializes the input feature Ẑ (K) of the K-th backward block. The subsequent propagation proceeds from the (k + 1)-th block to the k-th block. The k-th backward block is formulated as follows:
(k−1)
⊕ τ (Z2
),
(k)
(1) (k)
⊙ exp(γ(ϑ(Z1 ))) ⊕ η(Z1 ),
(2)
where γ(·) denotes the sigmoid function. The operator ⊙ denotes element-wise multiplication, and ⊕ denotes elementwise addition. τ (·), ϑ(·), and η(·) denote three subnetworks that share the same architecture but do not share parameters. (k) Specifically, τ (·) is used to predict the additive update of Z1 . ϑ(·) and η(·) are used to parameterize the scaling and shifting (k) terms of the affine transformation on Z2 , respectively. Given the input ϕ0 , the subnetwork is formulated as follows: H(ϕ0 ) = Concat(ϕ0 , ϕ1 , ϕ2 , ϕ3 , ϕ4 ), ϕi = LReLU(Conv3×3 (ϕi−1 )) ,
i = 1, . . . , 4.
(3)
where Concat(·) denotes concatenation along the channel dimension. After the K-th forward block, the final latent representation xT is obtained by (K) (K) xT = Down Concat(Z1 , Z2 ) , xT ∈ R4×64×64 (4) where Down(·) denotes the downsampling operation. xT is then used as the input to the subsequent diffusion model for stego image generation.
The SADM is designed to perform semantic-conditioned DDIM sampling from the latent representation xT to the stego image xstego . Semantic priors are first extracted from reference images and injected into the prediction network ϵθ , which provides semantic control over the generating trajectory toward the target semantics. Given a reference dataset Dref , a semantic prior set Csem = {ViT(x) | x ∈ Dref } is constructed by applying the ViT to the reference images. A semantic prior csem is then randomly sampled from Csem and injected into the prediction network ϵθ . csem is fused with intermediate feature maps to provide semantic guidance and suppress potential artifacts. The semantically guided sampling process can be formulated as the following ordinary differential equation (ODE): g 2 (t) αt g 2 (t) dxt = f (t) + xt − ϵθ (xt , t, csem ), (7) 2 dt 2σt 2σt2 dσ 2
αt d log αt 2 2 t where t ∈ [0, T ], f (t) := d log dt , g (t) := dt − 2 dt σt . At each step, DPM-Solver++ [47] approximates the exact solution at ti from the state xti−1 . This approximation is derived by applying a Taylor expansion around λti−1 as follows: σ ti xti = xt σti−1 i−1 Z λt w−1 X (n) i (λ − λti−1 )n dλ + σti ϵθ (xti−1 , ti−1 , csem ) eλ n! λti−1 n=0
+ O(hw+1 ). i
(8) We use the first-order case (w = 1), and the corresponding update rule is written as follows: x ti =
σti xt − αti (e−hi − 1)ϵθ (xti−1 , ti−1 , csem ), (9) σti−1 i−1
where hi = λti −λti−1 represents the step size in the log-SNR space. The secret latent representation xT is used as the initial state of the generation process, and the stego image xstego is progressively generated from it. Algorithm 1 summarizes the stego image generation procedure of the proposed method.
JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021
5
Algorithm 1 Stego Image Generation with Semantic Guidance Input: Secret image xsecret , reference dataset Dref , number of affine coupling blocks K, time steps {ti }N i=1 . Output: Stego image xstego .
Algorithm 2 Secret Image Recovery without Condition Input: Stego image xstego , inversion steps N , time steps {ti }N i=1 , number of affine coupling blocks K. Output: Recovered secret image xrec .
Stage 1: Invertible latent mapping and encoding (0) (0) Initialize Z (0) ← xsecret , and split Z (0) into [Z1 , Z2 ]. for k = 1, . . . , K do (k) (k−1) (k−1) Z1 ← Z1 ⊕ τ Z2 . (k) (k−1) (k) (k) Z2 ← Z2 ⊙ exp γ ϑ Z1 ⊕ η Z1 . end for (K) (K) Assemble secret latent x̂T ← [Z1 , Z2 ].
Stage 1: Unconditional inversion with TCM x′t0 ← xstego for i = 1, . . . , N do σt x′ti + αti (e−hi − 1)ϵθ (x′ti , ti ) x′ti−1 ← σi−1 ti repeat σ x′′ti ← σt ti x′ti−1 − αti (e−hi − 1)ϵθ (x′ti−1 , ti−1 ) i−1 x′ti−1 ← x′ti−1 − ϑ∇x′t Ri i−1 UPDATE(x′ti−1 , x′′ti , x′ti ) until converged end for x̂T ← x′tN
Stage 2: Semantic prior sampling Csem ← ViT (Dref ). csem ← RandomSample (Csem ).
Stage 2: Inverse latent mapping and decoding (K) (K) Split x̂T into [Ẑ1 , Ẑ2 ] for k = K, . . . , 1 do (k−1) (k) (k) (k) Ẑ2 ← (Ẑ2 ⊖ η(Ẑ1 )) ⊘ exp(γ(ϑ(Ẑ1 ))) (k−1) (k) (k−1) Ẑ1 ← Ẑ1 ⊖ τ (Ẑ2 ) end for (0) (0) xrec ← Concat(Ẑ1 , Ẑ2 ) return xrec
Stage 3: Semantic-conditioned diffusion generation xtN ← x̂T . for i = N, . . . , 1 do ϵ̂i ← ϵθ (xti , ti , csem ). hi ← λti−1 − λti . xti−1 ← DPM-Solver + + (xti , ϵ̂i , hi ). end for xstego ← Decode (xt0 ). return xstego .
The estimated state x′ti−1 is then refined by using the gradient of Ri : x′ti−1 ← x′ti−1 − ϑ∇x′t Ri , (14)
C. Trajectory Calibration Module In the recovery stage, the stego image xstego is inverted back to the latent representation without semantic conditioning. From Eq. (9), the inversion at time ti can be written as follows: x′ti =
σti ′ x − αti (e−hi − 1)ϵθ (x′ti−1 , ti−1 ). σti−1 ti−1
(10)
Since x′ti−1 is unknown during the current step, the prediction term ϵθ (x′ti−1 , ti−1 ) cannot be directly obtained. In naı̈ve DDIM inversion, x′ti is used to approximate the unknown term x′ti−1 , which inevitably introduces numerical errors. To address this issue, we introduce the TCM that predicts the next state and then calibrates the recovery trajectory through single-step discrepancy feedback. The TCM first computes an estimate state x′ti−1 from the current state x′ti using naı̈ve DDIM inversion: σt (11) x′ti−1 = i−1 x′ti + αti (e−hi − 1)ϵθ (x′ti , ti ) . σti The estimated state x′ti−1 is used to construct a simulated forward state x′′ti : x′′ti ←
σti ′ x − αti (e−hi − 1)ϵθ (x′ti−1 , ti−1 ). σti−1 ti−1
(12)
The mismatch between the simulated state x′′ti and the observed current state x′ti is measured by: Ri = ∥x′′ti − x′ti ∥22 .
(13)
i−1
where ϑ denotes the update step size for the gradient trajectory calibration. This operation performs gradient correction based on the mismatch between the forward-projected state and the current state. In this way, TCM not only compensates for the approximation error of DDIM inversion but also corrects reverse trajectory deviations caused by distortions in the transmission channel. The recovered latent representation x̂T is then fed into CACM for accurate reconstruction of the secret image xrec . Algorithm 2 provides a detailed outline of the comprehensive steps involved in the proposed method for recovering the secret image. D. Loss Functions We combine the loss terms introduced to form the total loss function Ltotal . This objective is composed of a recovery loss Lrec and a trajectory consistency loss Ltc , which are defined as follows: Ltotal = λrec Lrec + λtc Ltc , (15) where λrec and λtc are weighted coefficients for training. a) Recovery Loss: To ensure accurate reconstruction of the secret image during recovery, we introduce a recovery loss Lrec , which minimizes the discrepancy between the recovery image xrec and the secret image xsecret . The loss is defined as: Lrec = ∥xrec − xsecret ∥1 , where ∥ · ∥1 denotes the L1 norm regularization.
(16)
JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021
6
b) Trajectory Consistency Loss: To ensure accurate recovery, we introduce a trajectory consistency loss that measures the discrepancy between states. The loss computes the squared L2 distance between the original state and the simulated state x̂T obtained through reverse inversion: Ltc = ∥xT − x̂T ∥22 .
(17)
IV. E XPERIMENT In this section, we first introduce the experimental settings. Then, we provide a quantitative and qualitative evaluation on the visual appearance of the generated stego images. The security performance against some steganalyzers is reported also. Additionally, we assess its robustness against different degradations. Finally, ablation experiments are conducted to illustrate the necessity of each component in our framework. A. Implementation Details a) Experimental Settings: In our experiments, Stable Diffusion v2 [13] provided by HuggingFace is selected as the baseline. The guidance scale of the diffusion model is set to 3.0. During inference, DPMSolver++ [47] is used for sampling with 50 steps. The number of CACM layers is set to K = 4. The hyperparameters of the loss function λrec and λtc are set to 2.0 and 1.0, respectively. The model is trained for 20 epochs with the Adam optimizer and a learning rate of 1.0 × 10−4 . The batch size is set to 1. All experiments are conducted on an NVIDIA L20 GPU with the PyTorch framework. b) Baseline Methods: We focus on high-capacity image steganography and select seven classical baseline methods for comparison. These methods include some traditional modification-based image steganography (TS) methods, such as HiNet [31], ISN [30], iSCMIS [33], and MIGIIHNet [34]. State-of-the-art generative steganography (GS) methods, including CRoSS [12], DiffStega [17], and VQGANDiffStega [15]. All these models utilized in this study were pre-trained. c) Data Preparation: Following the data setting in [15], we use the FFHQ dataset [48] as the secret image set, with 5,000 images for training and 1,000 for testing. For GS methods that require text prompts, we use ChatGPT to extract text prompts from the Bedroom category of the LSUN dataset [49]. For TS methods, the cover images are generated by the same diffusion model. All images are center-cropped to 512 × 512 pixels and the corresponding latent space has a dimension of 64 × 64 × 4. The embedding capacity for all baselines is set at 24 bpp (bits per pixel). d) Evaluation metrics: In the experiments, we adopt various metrics to evaluate the performance of diverse steganographic methods. Specifically, we measure extraction accuracy, robustness, security, and visual quality. Visual quality: The Fréchet Inception Distance (FID) [50] serves as a benchmark for assessing image quality, as it quantifies the Fréchet distance between the feature distributions of stego images and real images. The FID is defined as follows: 1/2 FID(x,y) = ∥µx − µy ∥2 + Tr Σx + Σy − 2 (Σx Σy ) , (18)
where µx and µy denote the mean feature vectors of the real and stego images, respectively. Σx and Σy denote their corresponding covariance matrices. For security, the stego image should be visually authentic and with no content leakage. According to this, we calculate two FIDs, i.e. FID(ste,real) and FID(ste,sec) . The former measures the distribution distance between stego images and real images (bedroom dataset [49]) to assess authenticity, for which a lower score indicates higher resemblance to real images. For the latter, we use the secret FFHQ dataset as the real image set. A higher score implies less information leakage. Natural Image Quality Evaluator (NIQE) [51] is a noreference image quality assessment metric that evaluates the perceptual naturalness of stego images, with lower scores indicating greater statistical similarity to natural images. Extraction accuracy: We use PSNR and SSIM to measure extraction accuracy by comparing the recovered image with the original secret image, where higher values indicate better reconstruction. PSNR is defined based on the mean squared error (MSE) as follows: MSE =
W X H X 1 2 [Xi,j − Yi,j ] , W × H i=1 j=1
PSNR = 10 · log10
MAX2 . MSE
SSIM is defined as follows: (2µx µy + c1 ) (2σxy + c2 ) . SSIM = 2 µx + µ2y + c1 σx2 + σy2 + c2
(19)
(20)
(21)
Security: The security refers the detection resistance of stego image against the steganalysis tool. It is commonly evaluated by the detection error PE of the steganalyzer, which is defined as follows: PFA + PMD , (22) PE = 2 where PFA is the false alarm rate and PMD is the missed detection rate. The value of PE ranges from 0 to 1. PE = 0.5 corresponds to random guessing (equal likelihood of misclassifying cover or stego images), indicating optimal resistance to steganalysis. To measure PE , we adopt three steganalysis tools: StegExpose [52], XuNet [35] and KeNet [36]. StegExpose is a widely used steganalysis tool that integrates multiple statistical methods, including RS analysis and the Chi-square attack. While XuNet and KeNet are representative deep learning-based steganalyzers. Robustness: To evaluate robustness against unknown realworld distortions, we test extraction accuracy under several attacks, including JPEG compression, Gaussian noise, Saltand-pepper noise, Gaussian filtering, Median filtering, rotation, and resizing. B. Visual Quality Comparison Since traditional methods(TS) preserve visual quality by modifying a cover image, visual comparison with GS methods on visual quality is unfair. Therefore, we focus on the visual quality comparison among GS methods.
JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021
7
TABLE I T HE VISUAL COMPARISON OF STEGO IMAGES GENERATED BY DIFFERENT GENERATIVE - BASED SCHEMES . T HE BEST RESULTS ARE IN BOLD AND THE SECOND - BEST RESULTS ARE UNDERLINED . Methods CRoSS [12] DiffStega [17] VQGAN-DiffStega [15] Ours
NIQE ↓ 4.42 4.966 3.25 3.15
FID(ste,real) ↓ 49.052 48.698 17.709 9.254
FID(ste,sec) ↑ 71.608 74.055 292.933 342.506
Figure 4 shows stego images generated by CRoSS and the proposed method under four semantic conditions: 'Flower', 'Bedroom', 'Animal', and 'Human'. Each column shares the same semantic condition. The first two rows show stego images from CRoSS, guided by label names as text prompts. Since text prompts lack the ability to capture fine-grained details, the stego images suffer from reduced visual authenticity and content leakage. The third and fourth rows present our method guided by semantic priors from reference images. It is obvious that the proposed method produce a diverse set of images from the same secret image. The obtained stego images exhibit clearer textures, and a better semantic alignment compared to the obtained from the other approaches. For quantitative comparison, we further adopt NIQE and FID(ste,real) to evaluate the visual quality of our method. The results are given in the first two columns of Table I. Compared with CRoSS [12] and DiffStega [17], VQGAN-DiffStega [15] shows relatively competitive performance ob both two metrics. The proposed method achieves the lowest NIQE and FID(ste,real) scores, which further confirms its superior visual quality.
the stego image. Following [15], we quantify this effect by measuring the distribution distance between the secret and stego image sets. As shown in the third column of Table I, CRoSS [12] and DiffStega [17] obtain lower FID(ste,sec) scores. This indicates a higher resemblance between the secret and stego image sets, which implies a severe risk of semantic leakage. By contrast, the proposed framework overcomes this issue by aligning the generation with the target semantics. As expected, the proposed method achieves the highest FID(ste,sec) score, which suggests the lowest risk of content leakage.
Fig. 5. ROC curves of StegExpose for different schemes.
CRoSS
To evaluate the undetectability of the proposed method, 2,000 cover/stego image pairs generated by state-of-the-art (SOTA) methods were utilized for steganalysis. For fair comparison, the cover images are generated by the same diffusion model without embedding any secret. These cover images serve both as carriers for TS methods and as a reference for GS-generated stego images.
(a) Secret images
Ours
TABLE II Q UANTITATIVE COMPARISON OF UNDETECTABILITY AMONG DIFFERENT METHODS . T HE BEST RESULTS ARE IN BOLD AND THE SECOND - BEST RESULTS ARE UNDERLINED .
Methods
(b) Bedroom
(c) Animal
(d) Person
(e) Flower
Fig. 4. Stego images generated by CRoSS and our proposed method with the same semantic conditions.
C. Security Analysis We compare the proposed framework with several state-of-the-art (SOTA) methods to evaluate its security in terms of imperceptibility and undetectability. Imperceptibility is determined by how much secret-related content remains in
HiNet [31] ISN [30] iSCMIS [33] MIGIIHNet [34] CRoSS [12] DiffStega [17] VQGAN-DiffStega [15] Ours
Type
XuNet [35]
KeNet [36]
TS
0.5591 0.5512 0.4755 0.4910
0.5833 0.5827 0.5483 0.5163
GS
0.5132 0.5078 0.5198 0.5005
0.5211 0.5049
Fig. 5 shows the receiver operating characteristic (ROC) curves for StegExpose [52] for different methods. The proposed method achieves an area under the ROC curve (AUC) of 0.49, which is close to the level of a random classifier. This indicates the StegExpose cannot reliably distinguish the
JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021
ISN
iSCMIS
MIGIIHNet
CRoSS
DiffSteg
Ours
Recovery image
HiNet
8
Recovery image
|SecretRecovery|×5
Secret image-1
|SecretRecovery|×5
Secret image-2
Fig. 6. Demonstrations of the recovery images obtained by different schemes. TABLE III PSNR/SSIM OF RECOVERED IMAGES FROM DEGRADED STEGO IMAGES . T HE BEST RESULTS ARE IN BOLD AND THE SECOND - BEST RESULTS ARE UNDERLINED . Methods HiNet [31] ISN [30] iSCMIS [33] MIGIIHNet [34] CRoSS [12] DiffStega [17] VQGAN-DS [15] Ours
Type
TS
GS
Gaussian Noise
Clean 37.05/0.93 36.77/0.96 44.71/0.98 46.76/0.99 22.75/0.74 23.13/0.74 23.65/0.72 46.50/0.99
σ = 0.035 10.64/0.05 13.42/0.12 13.45/0.13 15.44/0.20 20.98/0.51 21.08/0.52 21.20/0.63 33.29/0.97
σ = 0.025 12.72/0.09 16.04/0.19 19.88/0.25 18.47/0.25 21.55/0.58 21.66/0.59 21.74/0.64 33.33/0.97
JPEG Compression
σ = 0.015 16.46/0.18 17.85/0.24 21.30/0.34 20.63/0.27 22.28/0.65 22.34/0.65 22.47/0.66 33.23/0.97
σ = 0.005 19.65/0.28 20.19/0.33 26.83/0.57 28.27/0.33 22.77/0.68 22.67/0.68 23.09/0.69 33.14/0.97
QF=30 11.16/0.32 8.30/0.38 11.34/0.44 11.51/0.38 20.36/0.58 20.57/0.60 20.86/0.62 37.34/0.99
QF=50 11.23/0.32 8.61/0.40 11.30/0.38 11.47/0.37 21.01/0.60 21.23/0.63 21.39/0.64 38.24/0.99
QF=70 11.25/0.33 8.75/0.40 11.27/0.34 11.48/0.35 22.01/0.67 22.13/0.69 22.24/0.67 39.35/0.99
QF=90 11.30/0.33 8.82/0.42 11.34/0.27 11.47/0.32 22.54/0.70 22.64/0.71 22.88/0.69 40.75/0.99
generated stego images from cover images, which confirms the superior undetectability of our approach. Furthermore, the detection error rates obtained by XuNet and KeNet are also reported in Table II. As shown in the table, stego images generated by TS methods, such as HiNet [31] and ISN [30], are more easily detectable, as modifying cover images inevitably introduces statistical artifacts. Unlike TS methods, GS methods synthesize stego images directly without any cover modification, which minimizes detectable artifacts and offers stronger resistance against steganalysis. Notably, the detection error rate of the proposed method remains consistently closer to 0.5 than the compared methods, indicating its superior undetectability.
However, for degraded stego images, TS performance degrades significantly while GS methods including CRoSS, DiffStega and VQGAN-DS demonstrate stronger resilience and yield relatively consistent recovery accuracy. The proposed method achieves the best and most stable recovery scores across all degradation levels. Fig. 7 provides a visual comparison, including the original secret images and their corresponding recovered versions from stego images degraded at different levels. Our scheme demonstrates remarkable fidelity in recovering the secret content, whereas images recovered by other baseline schemes exhibit noticeable color and texture distortions.
D. Robustness
E. Ablation Studies
To evaluate robustness, we simulate stego image degradation using Gaussian noise and JPEG compression at different levels. Table III reports the PSNR and SSIM scores of the recovered images. The first column of the table shows that TS methods outperform standard GS methods in recovering secret images from clean stego images. Our method achieves competitive performance, a conclusion further supported by the visual comparison of recovered images in Fig. 6.
To assess the contribution of each component in our framework, we conduct ablation experiments by adopting CRoSS [12] as the baseline. The CRoSS result is taken from the reported result in [15]. The proposed modules are then progressively integrated into this baseline, and the resulting variants are evaluated under the same experimental setting. a) Effectiveness of the CACM: CACM is employed to embed secret image into the latent representation. Rows 1
JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021
9
CRoSS Gaussian Noise σ= 0.035
QF= 30
QF= 90
σ= 0.005
Ours JPEG Compression
σ= 0.035
QF= 30
Gaussian Noise σ= 0.005
QF= 90
JPEG Compression
σ= 0.035
QF= 30
QF= 90
Recovery-1
σ= 0.005
DiffStega Gaussian Noise
JPEG Compression
Recovery-2
|SecretRecovery|×5
Secret image-1
|SecretRecovery|×5
Secret image-2
Fig. 7. Visual comparison of the recovered image under different levels of degradation. TABLE IV Q UANTITATIVE RESULTS OF THE ABLATION STUDY ON DIFFERENT CONFIGURATIONS . Setting
NIQE ↓
FID(ste,real) ↓
Baseline Baseline + CACM Baseline + TCM Baseline + SADM + TCM Ours
4.42 4.38 4.40 3.58 3.07
49.052 48.292 48.885 18.712 8.670
Secret/Recovery image pairs PSNR ↑ SSIM ↑ 22.75 0.74 32.89 0.96 34.65 0.97 35.12 0.97 46.50 0.99
Detection error(%)
FID(ste,sec) ↑
0.52 0.52 0.47 0.48 0.51
71.608 75.698 72.328 278.57 342.51
TABLE V A BLATION STUDY ON THE INVERSION STRATEGY UNDER DIFFERENT DISTORTION LEVELS
Method
Clean
Baseline Baseline + TCM
23.65/0.72 29.24/0.66
σ = 0.035 20.98/0.51 28.81/0.60
Gaussian Noise σ = 0.025 σ = 0.015 21.55/0.58 22.28/0.65 28.68/0.61 28.84/0.61
and 2 of the Table IV report the results of baseline and CACM-enabled configuration, respectively. Compared to the baseline, the integration of CACM substantially boosts reconstruction fidelity, which increases the PSNR from 22.75 dB to 32.89 dB and the SSIM from 0.74 to 0.96. These gains indicate that CACM establishes a stable and deterministic mapping between the secret image and the latent representation, which is a critical property for reliable information embedding. b) Effectiveness of the SADM: The proposed SADM is used to guide stego image generation with style priors. The efficiency of SADM is demonstrated by comparing the configurations shown in Rows 3 and 4 of Table IV. With SADM, the visual quality of the stego images is significantly improved, whose FID(ste,real) drops from 41.885 to 18.712. This improvement is attributed to the semantic priors introduced by SADM, which enhance the undetectability of the generated stego images. c) Effectiveness of the TCM: TCM is an essential module for trajectory correction during the recovery process in the prompt-free framework. The effectiveness of this module is demonstrated by comparing Rows 1 and 3 in Table IV.The introduction of TCM substantially improves reconstruction fidelity, which improves PSNR from 22.75 dB to 34.65 dB, and SSIM increase from 0.74 to 0.97. These results indicate that
σ = 0.005 22.77/0.68 28.85/0.61
QF = 30 20.36/0.58 29.28/0.60
JPEG compression QF = 50 QF = 70 21.01/0.60 22.01/0.67 29.27/0.60 28.75/0.61
QF = 90 22.54/0.70 29.06/0.58
TCM reduces the numerical errors accumulated and improves latent recovery accuracy. To further compare the robustness of inversion strategies, text prompt-guided inversion and TCM are evaluated under different distortion. As shown in Table V, text-prompt-based inversion becomes less reliable under distortions. This is because text prompts cannot capture the latent deviation caused by image degradation, which limits their ability to stabilize the inversion trajectory. In constant, TCM addresses this limitation by correcting trajectories and stabilizing the reconstruction process to preserve high fidelity under noise. TABLE VI A BLATION ON THE NUMBER OF AFFINE COUPLING BLOCKS . Number of CACM
NIQE↓
FID(ste,real) ↓
1 2 4 6
4.86 4.18 3.07 3.89
49.61 48.81 8.670 12.11
Secret/ Recovery image pairs PSNR↑ SSIM ↑ 30.49 0.97 31.02 0.97 47.08 0.99 37.19 0.99
Detection error(%) 0.56 0.50 0.49 0.48
d) Ablation on the Number of CACM Blocks: We further evaluate the impact of using different numbers of CACM blocks, as reported in Table IV. The results reveal that the performance of the framework is sensitive to the choice of K. With a small value of K (e.g., K < 4), the mapping from the secret image to the latent space remains insufficient, and the
JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021
reconstruction fidelity tends to be limited. Conversely, with an excessively large K, the overall performance tends to decrease. This degradation stems from the progressively accumulated information loss across successive invertible transformations.The system get the best overall performance with K = 4. The above results suggest that an appropriate number of coupling blocks enables effective latent transformation and reduces excessive information loss, which leads to high visual quality of reconstruction. V. C ONCLUSION This paper presents a prompt-free generative image steganography framework to improve the security and robustness of the steganography system. The proposed framework removes the dependence on transmitted text prompts and instead uses semantic priors extracted from reference datasets to enable user-controllable stego image generation. Within this framework, the hiding stage maps the secret image to the latent representation through CACM and uses SADM to guide controllable stego image generation with semantic priors. During recovery, the stego image is inverted to the latent representation through TCM, which uses single-step feedback to improve recovery stability under transmission distortions. Extensive experiments demonstrate that the proposed framework achieves competitive visual quality, stronger controllability, and improved robustness compared with existing methods. Future work will focus on increasing embedding capacity and enhancing recovery fidelity under complex realworld degradations. ACKNOWLEDGMENTS This research was supported by the National Natural Science Foundation of China (Grant Nos. 62376238, 62372170, 12571591), the Scientific Research Fund of Hunan Provincial Education Department (Grant No.2023JGSZ032), and the Postgraduate Scientific Research Innovation Project of Hunan Province (Grant No.CX20250999). R EFERENCES [1] J. Lv, C. Fu, L. Chen, M. Liu, S. He, S. Jiang, and L. Han, “Dopsteg: Program steganography using data-oriented programming,” Science of Computer Programming, vol. 245, p. 103311, 2025. [2] H. Zeng, Y. Xing, S.-T. Kim, and X. Li, “Dualmodal and multifunctional steganography of three-dimensional integral imaging for the internet of medical things,” Signal Processing, p. 110217, 2025. [3] X. Ni, Z. Wu, L. Liu, and S. Song, “Face video steganography for privacy-protection automatic depression assessment,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2025, pp. 80–86. [4] P. Wei, S. Li, X. Zhang, G. Luo, Z. Qian, and Q. Zhou, “Generative steganography network,” in Proceedings of the 30th ACM International Conference on Multimedia, 2022, pp. 1621–1629. [5] J. Qin, Y. Luo, X. Xiang, Y. Tan, and H. Huang, “Coverless image steganography: a survey,” IEEE Access, vol. 7, pp. 171 372–171 394, 2019. [6] I. J. Goodfellow, J. Pouget-Abadie, M. Mirza, B. Xu, D. Warde-Farley, S. Ozair, A. Courville, and Y. Bengio, “Generative adversarial nets,” Advances in Neural Information Processing Systems, vol. 27, 2014. [7] D. P. Kingma and P. Dhariwal, “Glow: Generative flow with invertible 1x1 convolutions,” Advances in Neural Information Processing Systems, vol. 31, 2018.
10
[8] C. Yu, D. Hu, S. Zheng, W. Jiang, M. Li, and Z.-q. Zhao, “An improved steganography without embedding based on attention gan,” Peer-to-Peer Networking and Applications, vol. 14, no. 3, pp. 1446–1457, 2021. [9] P. Wei, G. Luo, Q. Song, X. Zhang, Z. Qian, and S. Li, “Generative steganographic flow,” in IEEE International Conference on Multimedia and Expo, 2022, pp. 1–6. [10] X. Liu, Z. Ma, J. Ma, J. Zhang, G. Schaefer, and H. Fang, “Image disentanglement autoencoder for steganography without embedding,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 2303–2312. [11] F. Peng, G. Chen, and M. Long, “A robust coverless steganography based on generative adversarial networks and gradient descent approximation,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 32, no. 9, pp. 5817–5829, 2022. [12] J. Yu, X. Zhang, Y. Xu, and J. Zhang, “Cross: Diffusion model makes controllable, robust and secure image steganography,” Advances in Neural Information Processing Systems, vol. 36, pp. 80 730–80 743, 2023. [13] R. Rombach, A. Blattmann, D. Lorenz, P. Esser, and B. Ommer, “Highresolution image synthesis with latent diffusion models,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 10 684–10 695. [14] Y. Xu, X. Zhang, X. Meng, C. Mou, and J. Zhang, “Diffusionbased hierarchical image steganography,” in 2025 IEEE International Conference on Multimedia and Expo, 2025, pp. 1–6. [15] L. Chen, B. Feng, Z. Xia, W. Lu, and J. Weng, “Robust generative steganography for image hiding using concatenated mappings,” IEEE Transactions on Information Forensics and Security, 2025. [16] J. Jiang, Z. Wang, and X. Zhang, “Image-to-image steganography based on multimodal generative model,” Signal Processing, vol. 238, p. 110106, 2026. [17] Y. Yang, Z. Liu, J. Jia, Z. Gao, Y. Li, W. Sun, X. Liu, and G. Zhai, “Diffstega: towards universal training-free coverless image steganography with diffusion models,” arXiv preprint arXiv:2407.10459, 2024. [18] L. Zhang, A. Rao, and M. Agrawala, “Adding conditional control to text-to-image diffusion models,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 3836–3847. [19] X. Xu, J. Guo, Z. Wang, G. Huang, I. Essa, and H. Shi, “Promptfree diffusion: Taking” text” out of text-to-image diffusion models,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2024, pp. 8682–8692. [20] H. Ye, J. Zhang, S. Liu, X. Han, and W. Yang, “Ip-adapter: Text compatible image prompt adapter for text-to-image diffusion models,” arXiv preprint arXiv:2308.06721, 2023. [21] Q. Zhang and F. Huang, “Provably secure generative steganography based on adjustable orthogonal mapping,” IEEE Transactions on Dependable and Secure Computing, 2025. [22] R. Mokady, A. Hertz, K. Aberman, Y. Pritch, and D. Cohen-Or, “Nulltext inversion for editing real images using guided diffusion models,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, June 2023, pp. 6038–6047. [23] B. Wallace, A. Gokul, and N. Naik, “Edict: Exact diffusion inversion via coupled transformations,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, June 2023, pp. 22 532– 22 541. [24] X. Hu, S. Li, Q. Ying, W. Peng, X. Zhang, and Z. Qian, “Establishing robust generative image steganography via popular stable diffusion,” IEEE Transactions on Information Forensics and Security, vol. 19, pp. 8094–8108, 2024. [25] A. Dosovitskiy, L. Beyer, A. Kolesnikov, D. Weissenborn, X. Zhai, T. Unterthiner, M. Dehghani, M. Minderer, G. Heigold, S. Gelly et al., “An image is worth 16x16 words: Transformers for image recognition at scale,” arXiv preprint arXiv:2010.11929, 2020. [26] S. Baluja, “Hiding images in plain sight: Deep steganography,” Advances in Neural Information Processing Systems, vol. 30, 2017. [27] S. Baluja, “Hiding images within images,” IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 42, no. 7, pp. 1685–1697, 2020. [28] J. Zhu, R. Kaplan, J. Johnson, and L. Fei-Fei, “Hidden: Hiding data with deep networks,” in Proceedings of the European Conference on Computer Vision, September 2018. [29] K. A. Zhang, A. Cuesta-Infante, L. Xu, and K. Veeramachaneni, “Steganogan: High capacity image steganography with gans,” arXiv preprint arXiv:1901.03892, 2019. [30] S.-P. Lu, R. Wang, T. Zhong, and P. L. Rosin, “Large-capacity image steganography based on invertible neural networks,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2021, pp. 10 816–10 825.
JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021
[31] J. Jing, X. Deng, M. Xu, J. Wang, and Z. Guan, “Hinet: Deep image hiding by invertible network,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2021, pp. 4733–4742. [32] Z. Guan, J. Jing, X. Deng, M. Xu, L. Jiang, Z. Zhang, and Y. Li, “Deepmih: Deep invertible network for multiple image hiding,” IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 45, no. 1, pp. 372–390, 2022. [33] F. Li, Y. Sheng, X. Zhang, and C. Qin, “iscmis: Spatial-channel attention based deep invertible network for multi-image steganography,” IEEE Transactions on Multimedia, vol. 26, pp. 3137–3152, 2023. [34] K. Zhang, F. Xiao, J. Cai, and X. Gao, “Mutual information guided invertible image hiding network,” Engineering Applications of Artificial Intelligence, vol. 162, p. 112343, 2025. [35] G. Xu, H.-Z. Wu, and Y.-Q. Shi, “Structural design of convolutional neural networks for steganalysis,” IEEE Signal Processing Letters, vol. 23, no. 5, pp. 708–712, 2016. [36] W. You, H. Zhang, and X. Zhao, “A siamese cnn for image steganalysis,” IEEE Transactions on Information Forensics and Security, vol. 16, pp. 291–306, 2020. [37] J. Song, C. Meng, and S. Ermon, “Denoising diffusion implicit models,” arXiv preprint arXiv:2010.02502, 2020. [38] J. Ho, A. Jain, and P. Abbeel, “Denoising diffusion probabilistic models,” Advances in Neural Information Processing Systems, vol. 33, pp. 6840– 6851, 2020. [39] E. Hoogeboom, J. Heek, and T. Salimans, “Simple diffusion: End-toend diffusion for high resolution images,” in International Conference on Machine Learning, 2023, pp. 13 213–13 232. [40] B. Xia, Y. Zhang, S. Wang, Y. Wang, X. Wu, Y. Tian, W. Yang, and L. Van Gool, “Diffir: Efficient diffusion model for image restoration,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 13 095–13 105. [41] B. Fei, Z. Lyu, L. Pan, J. Zhang, W. Yang, T. Luo, B. Zhang, and B. Dai, “Generative diffusion prior for unified image restoration and enhancement,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 9935–9946. [42] Q. Zhou, P. Wei, Z. Qian, X. Zhang, and S. Li, “Improved generative steganography based on diffusion model,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 35, no. 7, pp. 6494–6507, 2025. [43] J. Jiang, Z. Wang, Z. Yuan, and X. Zhang, “Generative image steganography based on text-to-image multimodal generative model,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 35, no. 9, pp. 8907–8916, 2025. [44] X. Li, L. Chen, T. Fu, Z. Fu, and Y. Gao, “Coverless image steganography based on semantic-controlled text-to-image generation,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 35, no. 8, pp. 8391–8405, 2025. [45] Q. Zhang and F. Huang, “Robust generative steganography based on image mapping,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 34, no. 12, pp. 13 543–13 555, 2024. [46] Z. Yang, K. Chen, K. Zeng, W. Zhang, and N. Yu, “Provably secure robust image steganography,” IEEE Transactions on Multimedia, vol. 26, pp. 5040–5053, 2023. [47] C. Lu, Y. Zhou, F. Bao, J. Chen, C. Li, and J. Zhu, “Dpm-solver: A fast ode solver for diffusion probabilistic model sampling in around 10 steps,” Advances in Neural Information Processing Systems, vol. 35, pp. 5775–5787, 2022. [48] T. Karras, S. Laine, and T. Aila, “A style-based generator architecture for generative adversarial networks,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, June 2019. [49] F. Yu, A. Seff, Y. Zhang, S. Song, T. Funkhouser, and J. Xiao, “Lsun: Construction of a large-scale image dataset using deep learning with humans in the loop,” arXiv preprint arXiv:1506.03365, 2015. [50] M. Heusel, H. Ramsauer, T. Unterthiner, B. Nessler, and S. Hochreiter, “Gans trained by a two time-scale update rule converge to a local nash equilibrium,” Advances in Neural Information Processing Systems, vol. 30, 2017. [51] L. Zhang, L. Zhang, and A. C. Bovik, “A feature-enriched completely blind image quality evaluator,” IEEE Transactions on Image Processing, vol. 24, no. 8, pp. 2579–2591, 2015. [52] B. Boehm, “Stegexpose-a tool for detecting lsb steganography,” arXiv preprint arXiv:1410.6656, 2014.
11
Jingwen Cai received the M.E. degree in computer technology in 2022 from the Guilin University of Electronic Technology, Guilin, China, where she is currently working toward the Ph.D. degree in computer technology with the School of Computer Science, Xiangtan University, Xiangtan, China. Her research interests include information hiding, steganography, covert communication, and multimedia security.
Fen Xiao received the B.E. and Ph.D. degrees from Xiangtan University, Xiangtan, China, in 2002 and 2008, respectively. She was a Visiting Scholar at the State Key Laboratory of Pacific Northwest Pacific, Richland, WA, USA. She is currently a Professor with the School of Computer Science, School of Cyberspace Security, Xiangtan University. Her current research interests include visual saliency detection, remote sensing, image analysis, and image description.
Shuhua Deng received the B.S. degree in computer science and the Ph.D. degree in computational mathematics from Xiangtan University, Hunan, China, in 2013 and 2018, respectively. He is currently an Associate Professor at the School of Computer Science, Xiangtan University, China. His current research interests include software-defined networks, network security, and machine learning.
Xieping Gao received the B.S. and M.S. degrees from Xiangtan University, Xiangtan, China, in 1985 and 1988, respectively, and the Ph.D. degree from Hunan University, Changsha, China, in 2003. He was a Visiting Scholar with the National Key Laboratory of Intelligent Technology and Systems, Tsinghua University, Beijing, China, from 1995 to 1996, and the School of Electrical and Electronic Engineering, Nanyang Technological University, Singapore, from 2002 to 2003. He is currently a Professor with the Hunan Provincial Key Laboratory of Intelligent Computing and Language Information Processing, Hunan Normal University, Changsha. His research interests include the areas of neural networks, evolution computation, and hyperspectral image processing. Dr. Gao is a regular reviewer for several journals and he has been a member of the technical committees of several scientific conferences.