Skip to content

Commit

Permalink
fix metadata missing problem
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPeng517 committed Dec 19, 2024
1 parent 35c536b commit f6461f3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
Binary file added src/assets/jhu_logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/jhu_logo.png
Binary file not shown.
19 changes: 14 additions & 5 deletions src/pages/index.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
---
layout: ../layouts/Layout.astro
title: "Pixel Is Not A Barrier: An Effective Evasion Attack for Pixel-Domain Diffusion Models"
description: "AAAI 2025 paper"
favicon: favicon.svg
thumbnail: teaser.png
---

import Layout from "../layouts/Layout.astro";

import Header from "../components/Header.astro";
Expand All @@ -18,7 +26,7 @@ import qualitative_1 from "../assets/qualitative_results_supp.png";
import qualitative_2 from "../assets/qualitative_results_supp_2.png";
import citi_logo from "../assets/citi_logo.jpg";
import ntu_logo from "../assets/ntu_logo.jpeg";
import jhu_logo from "../assets/jhu_logo.png"
import jhu_logo from "../assets/jhu_logo.jpg";


import Splat from "../components/Splat.tsx"
Expand Down Expand Up @@ -74,6 +82,7 @@ export const components = {pre: CodeBlock}
{
name: "Johns Hopkins University",
notes: ["3"],
logo: jhu_logo
}

]}
Expand Down Expand Up @@ -103,18 +112,18 @@ export const components = {pre: CodeBlock}
]}
/>

<Figure caption="<b>Figure. Qualitative results compared to the previous methods.</b> Our adversarial images can effectively corrupt the edited results without significant fidelity decrease. The same column shares the same random seed for fair comparisons.">
<Image source={teaser} width="1000" altText="teaser"/>
</Figure>

<Figure caption="">
<Image source={overview} width="1000" altText="overview"/>
<Image source={overview} width="800" altText="overview"/>
</Figure>

## Abstract

Diffusion Models have emerged as powerful generative models for high-quality image synthesis, with many subsequent image editing techniques based on them. However, the ease of text-based image editing introduces significant risks, such as malicious editing for scams or intellectual property infringement. Previous works have attempted to safeguard images from diffusion-based editing by adding imperceptible perturbations. These methods are costly and specifically target prevalent Latent Diffusion Models (LDMs), while Pixel-domain Diffusion Models (PDMs) remain largely unexplored and robust against such attacks. Our work addresses this gap by proposing a novel attack framework, AtkPDM. AtkPDM is mainly composed of a feature representation attacking loss that exploits vulnerabilities in denoising UNets and a latent optimization strategy to enhance the naturalness of protected images. Extensive experiments demonstrate the effectiveness of our approach in attacking dominant PDM-based editing methods (e.g., SDEdit) while maintaining reasonable protection fidelity and robustness against common defense methods. Additionally, our framework is extensible to LDMs, achieving comparable performance to existing approaches. Project page URL: https://AlexPeng517.github.io/AtkPDM

<Figure caption="<b>Figure. Qualitative results compared to the previous methods.</b> Our adversarial images can effectively corrupt the edited results without significant fidelity decrease. The same column shares the same random seed for fair comparisons.">
<Image source={teaser} width="800" altText="teaser"/>
</Figure>


## BibTeX Citation
Expand Down

0 comments on commit f6461f3

Please sign in to comment.