<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>First Steps in Pixel Privacy: Exploring Deep Learning-based Image Enhancement against Large-scale Image Inference</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Zhuoran Liu</string-name>
          <email>z.liu@cs.ru.nl</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Zhengyu Zhao</string-name>
          <email>z.zhao@cs.ru.nl</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Radboud University</institution>
          ,
          <country country="NL">Netherlands</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2018</year>
      </pub-date>
      <fpage>29</fpage>
      <lpage>31</lpage>
      <abstract>
        <p>In this paper, we present several enhancement approaches for the Pixel Privacy Task of MediaEval 2018. The goal of this task is to use image enhancement techniques to fool the state-of-the-art convolutional neural network (ConvNet) classifiers in scene classification problem, and maintain the visual appeal of images. Our proposed approaches are based on image crop, adversarial perturbations and style transfer, respectively. Firstly, we showed the potential influence of easy-to-use image processing operations, i.e., cropping (center cropping and random cropping). In perturbationbased approach, we apply a white-box technique, which makes use of the information of ConvNet classifiers. Based on the experiments, we observed some limitations of this approach, caused by, for example, image preprocessing. In addition, we demonstrated the style transfer-based approach, which was not developed for privacy protection, could be also used to reduce the efectiveness of the classifiers for Large-scale Image Inference. Specifically, we implement black-box techniques based on the Generative Adversarial Network. Experimental results showed that style transfer-based approach could address privacy protection and appeal improvement simultaneously.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>INTRODUCTION</title>
      <p>
        Multimedia data is generated every day and accumulated as
largescale datasets. Based on large-scale image data and the development
of artificial intelligence, privacy-sensitive information, e.g., daily
patterns and locations, can be eficiently inferred by some
stateof-the-art techniques [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. The objective of the Pixel Privacy Task
of MediaEval 2018 is to protect privacy-sensitive scene images
against large-scale image inference algorithms, and at the same
time, maintain or even increase the visual appeal of the image.
      </p>
      <p>
        Commonly used approaches to protection are based on hiding
visible privacy-sensitive information of images. In the visual privacy
task of MediaEval [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], some approaches are proposed to protect
information in video sequences. For example, [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] proposes an
approach based on false colour within the JPEG architecture to prevent
revealing of sensitive information of video surveillance to viewers.
Although these approaches can protect sensitive information in
images, they are not applicable in the context of this task, because
users would not like to share these social images, which have been
blurred or changed obviously.
      </p>
      <p>
        In the scenario of social images, we found two main categories
of techniques can be used to protect privacy-sensitive scene images.
One of them is based on generating adversarial examples. There
are already some techniques which could generate adversarial
examples, e.g., L-BFGS method [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ], fast gradient sign method [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]
and so on. These generated adversarial examples could fool the
ConvNet-based classifiers to protect privacy information. The
adversarial examples software library cleverhans [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] collects some
construction techniques to generate adversarial examples. Given
the condition that perturbation-based approach may need
information from classifier and the resulting images may look not good.
We propose to use style transfer approach to protect image
privacy. This category of approaches protects sensitive information in
images by transferring social images to another style, and at the
same time , improves the image appeal. There are plenty of
methods to do style transfer. By making use of image representations
from ConvNets, [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] renders the semantic content of an image in
diferent styles. Some generative models are also applied for style
transfer, for example, conditional adversarial networks for
imageto-image translation [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] and cycle-consistent adversarial networks
(CycleGAN) for unpaired image-to-image translation [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ].
      </p>
      <p>In this paper, we explore these two categories of approaches to
image privacy and image appeal, and show their efectiveness base
on the experiments.
2</p>
    </sec>
    <sec id="sec-2">
      <title>APPROACHES</title>
      <p>In this section, we describe our perturbation-based approach and
show the potential limitations of it. Then, style-transfer-based
approach was proposed to achieve more efective protection and
generate images with better quality with respect to human perception.
2.1</p>
    </sec>
    <sec id="sec-3">
      <title>Perturbation-based approach</title>
      <p>
        Our perturbation-based approach generates a fixed 2-d perturbation
vector for each image. After adding this quasi-imperceptible vector
to original images, the performance of the ConvNets-based
classiifer will decreased by a large margin. Our implementation of image
perturbation refers to Universal Adversarial Perturbation (UAP) [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ],
which makes use of DeepFool [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] and generalizes well across
diferent ConvNets. This approach follows a white-box setting. In other
words, the calculation of perturbation need explicit information
from both training dataset and the ConvNet model. Specifically,
for each image in the dataset, it computes a minimal perturbation
which sends the perturbed image to the decision boundary. Then,
this perturbation will be updated iteratively with a constraint, e.g.,
L∞ ≤ ξ , to make the final perturbation as small as possible.
      </p>
      <p>
        In our implementation, we calculate the perturbation vector on
the basis of 3000 images from the validation data set provided by
2018 Pixel Privacy Task and a ConvNets model (ResNet50), which
was pretrained on the Places-Standard dataset [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]. In the
preprocessing step, we resize input images to 256 with respect to its short
edge and keep the original ratio. Then we crop a 224 square in the
center of images. After training, we add the resulting perturbation
vector in the resized test images. We summarized the potrntial
limitations of UAP as follows. Firstly, in most practical cases of social
images, the information of inference models and the traing set is
not available. It is hard to generate optimal perturbation vector
without this explicit information. Secondly, quasi-imperceptible
artifacts added in the perturbed images are still not satisfying in the
context of social images. In addition, the generated perturbation
is vulnerable to image preprocessing [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Exploratory experiments
showed potential influences of image preprocessing with cropping
operations have potential influence on this approach.
      </p>
      <p>With additional scaling and cropping of the perturbed images,
the top-1 accuracy of the classification drops from 46.4% to 41.9%.
2.2</p>
    </sec>
    <sec id="sec-4">
      <title>Style transfer-based approach</title>
      <p>
        We propose a style transfer-based approach to protect image privacy
and increase appeal. In particular, we apply GANs-based methods
to change images to some certain styles, such as Ukiyo-e style with
CycleGAN [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] and Hayao style with CartoonGAN [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. Both of two
above GAN-based methods are used for unpaired image-to-image
translation. Given a source domain X (input images) and a target
domain Y (styled images), a mapping G : X →− Y is learned such
that G(X ) is indistinguishable from Y . The objective of the learning
is a summation of adversarial losses and cycle consistency loss.
After training on source set and target set, we learn a mapping
function G, which can transfer the style of any input images to a
target style.
3
      </p>
    </sec>
    <sec id="sec-5">
      <title>EVALUATION RESULTS</title>
      <p>We submitted five runs for the Pixel Privacy Task of MediaEval
2018. Fig. 1 shows image examples enhanced by these five runs. In
social multimedia, it is common that users crop images and videos
to improve the appeal before sharing them. Due to diferent settings
of ConvNet-based classifiers, image cropping may also have some
influences on the classification. For example, in the preprocessing
stage of the classification, the input images are scaled and cropped
by default. So we submitted two runs based on central cropping
and random cropping to explore potential influence of image
cropping. In addition, we submit one run using our perturbation-based
approach, and another two runs using our style transfer-based
approach.</p>
      <p>Table 1 presents evaluation results of our five runs in terms of
Top-1 and Top-5 classification accuracy. We see that style
transferbased and image cropping approaches yield obvious decrease of
accuracy compared with the original performance of the classifier.
Perturbation-based approach shows less decrease, due to image
preprocessing as we discussed in 2.1. In addition, the number of
training images and selection of hyper-parameters in UAP may also
influence the evaluation performance.</p>
      <p>
        We also get aesthetics results of our submissions [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. We also
evaluate the aesthetic quality of the images enhanced by our runs,
using NIMA (Neural Image Assessment) [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ]. Hayao style with
CartoonGAN shows the largest increase of mean aesthetics score (5.09),
compared with the score (4.472) of original images.
      </p>
    </sec>
    <sec id="sec-6">
      <title>CONCLUSIONS AND FUTURE WORK</title>
      <p>In this paper, we propose perturbation-based approach (white-box)
and style transfer-based approach (black-box) to protect privacy
and improve appeal in scene sensitive images. The proposed style
transfer-based approach has a good evaluation performance in both
image privacy and image appeal.</p>
      <p>From the exploratory experiments and evaluation results, we
ifnd that the perturbation-based approach generally works well,
but is vulnerable to image preprocessing. In addition, added
perturbation vector decreases the image appeal. For style transfer-based
approach, the prediction accuracy decreases significantly. In
addition, Hayao style with shows an increase in appeal score by NIMA
evaluation.</p>
      <p>In the future, we will combine the proposed two approaches to
simultaneously achieve efectiveness of privacy protection based on
optimal computation of the perturbation and improve the aesthetic
quality of images.</p>
    </sec>
    <sec id="sec-7">
      <title>ACKNOWLEDGMENTS</title>
      <p>This work is part of the Open Mind research program, financed by
the Netherlands Organization for Scientific Research (NWO). The
experiments were carried out on the Dutch national e-infrastructure
with the support of SURF Cooperative.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>Anish</given-names>
            <surname>Athalye</surname>
          </string-name>
          and
          <string-name>
            <given-names>Ilya</given-names>
            <surname>Sutskever</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Synthesizing robust adversarial examples</article-title>
          .
          <source>arXiv preprint arXiv:1707.07397</source>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Atta</given-names>
            <surname>Badii</surname>
          </string-name>
          , Mathieu Einig, Tomas Piatrik, and others.
          <source>2014</source>
          .
          <article-title>Overview of the MediaEval 2013 Visual Privacy Task.</article-title>
          .
          <source>In MediaEval.</source>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Simon</given-names>
            <surname>Brugman</surname>
          </string-name>
          , Maciej Wysokinski, and
          <string-name>
            <given-names>Martha</given-names>
            <surname>Larson</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>MediaEval 2018 Pixel Privacy Task: Views on image enhancement</article-title>
          .
          <source>In Working Notes Proceedings of the MediaEval 2018 Workshop.</source>
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <surname>Yang</surname>
            <given-names>Chen</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yu-Kun Lai</surname>
          </string-name>
          , and
          <string-name>
            <surname>Yong-Jin Liu</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>CartoonGAN: Generative Adversarial Networks for Photo Cartoonization</article-title>
          .
          <source>In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition</source>
          .
          <fpage>9465</fpage>
          -
          <lpage>9474</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Jaeyoung</given-names>
            <surname>Choi</surname>
          </string-name>
          , Martha Larson,
          <string-name>
            <given-names>Xinchao</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Kevin</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Gerald</given-names>
            <surname>Friedland</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Alan</given-names>
            <surname>Hanjalic</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>The Geo-Privacy Bonus of Popular Photo Enhancements</article-title>
          .
          <source>In Proceedings of the 2017 ACM on International Conference on Multimedia Retrieval. ACM</source>
          ,
          <volume>84</volume>
          -
          <fpage>92</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Serdar</given-names>
            <surname>Çiftçi</surname>
          </string-name>
          , Ahmet Oğuz Akyüz, and
          <string-name>
            <given-names>Touradj</given-names>
            <surname>Ebrahimi</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>A reliable and reversible image privacy protection based on false colors</article-title>
          .
          <source>IEEE Transactions on Multimedia 20</source>
          ,
          <issue>1</issue>
          (
          <year>2018</year>
          ),
          <fpage>68</fpage>
          -
          <lpage>81</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <surname>Leon</surname>
            <given-names>A Gatys</given-names>
          </string-name>
          ,
          <article-title>Alexander S Ecker,</article-title>
          and
          <string-name>
            <given-names>Matthias</given-names>
            <surname>Bethge</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Image style transfer using convolutional neural networks</article-title>
          .
          <source>In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition</source>
          .
          <fpage>2414</fpage>
          -
          <lpage>2423</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <surname>Ian</surname>
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Goodfellow</surname>
            , Jonathon Shlens, and
            <given-names>Christian</given-names>
          </string-name>
          <string-name>
            <surname>Szegedy</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Explaining and Harnessing Adversarial Examples</article-title>
          .
          <source>CoRR abs/1412</source>
          .6572 (
          <year>2014</year>
          ). arXiv:
          <volume>1412</volume>
          .6572 http://arxiv.org/abs/1412.6572
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>Phillip</given-names>
            <surname>Isola</surname>
          </string-name>
          ,
          <string-name>
            <surname>Jun-Yan</surname>
            <given-names>Zhu</given-names>
          </string-name>
          ,
          <source>Tinghui Zhou, and Alexei A Efros</source>
          .
          <year>2017</year>
          .
          <article-title>Image-to-image translation with conditional adversarial networks</article-title>
          .
          <source>arXiv preprint</source>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Seyed-Mohsen</surname>
            Moosavi-Dezfooli, Alhussein Fawzi, Omar Fawzi, and
            <given-names>Pascal</given-names>
          </string-name>
          <string-name>
            <surname>Frossard</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Universal adversarial perturbations</article-title>
          .
          <source>In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR'17)</source>
          .
          <fpage>1765</fpage>
          -
          <lpage>1773</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <surname>Seyed-Mohsen</surname>
            Moosavi-Dezfooli,
            <given-names>Alhussein</given-names>
          </string-name>
          <string-name>
            <surname>Fawzi</surname>
            , and
            <given-names>Pascal</given-names>
          </string-name>
          <string-name>
            <surname>Frossard</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Deepfool: a simple and accurate method to fool deep neural networks</article-title>
          .
          <source>In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR'16)</source>
          .
          <fpage>2574</fpage>
          -
          <lpage>2582</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Nicolas</surname>
            <given-names>Papernot</given-names>
          </string-name>
          , Fartash Faghri, Nicholas Carlini,
          <string-name>
            <given-names>Ian</given-names>
            <surname>Goodfellow</surname>
          </string-name>
          , Reuben Feinman, Alexey Kurakin, Cihang Xie, Yash Sharma, Tom Brown, Aurko Roy, Alexander Matyasko, Vahid Behzadan, Karen Hambardzumyan, Zhishuai Zhang,
          <string-name>
            <surname>Yi-Lin</surname>
            <given-names>Juang</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhi Li</surname>
            ,
            <given-names>Ryan</given-names>
          </string-name>
          <string-name>
            <surname>Sheatsley</surname>
            , Abhibhav Garg, Jonathan Uesato, Willi Gierke, Yinpeng Dong, David Berthelot, Paul Hendricks, Jonas Rauber, and
            <given-names>Rujun</given-names>
          </string-name>
          <string-name>
            <surname>Long</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <source>Technical Report on the CleverHans v2.1.0 Adversarial Examples Library. arXiv preprint arXiv:1610.00768</source>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Christian</surname>
            <given-names>Szegedy</given-names>
          </string-name>
          , Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and
          <string-name>
            <given-names>Rob</given-names>
            <surname>Fergus</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>Intriguing properties of neural networks</article-title>
          .
          <source>arXiv preprint arXiv:1312.6199</source>
          (
          <year>2013</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>Hossein</given-names>
            <surname>Talebi</surname>
          </string-name>
          and
          <string-name>
            <given-names>Peyman</given-names>
            <surname>Milanfar</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Nima: Neural image assessment</article-title>
          .
          <source>IEEE Transactions on Image Processing 27</source>
          ,
          <issue>8</issue>
          (
          <year>2018</year>
          ),
          <fpage>3998</fpage>
          -
          <lpage>4011</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <surname>Bolei</surname>
            <given-names>Zhou</given-names>
          </string-name>
          , Agata Lapedriza, Aditya Khosla, Aude Oliva, and Antonio Torralba.
          <year>2017</year>
          .
          <article-title>Places: A 10 million Image Database for Scene Recognition</article-title>
          .
          <source>IEEE Transactions on Pattern Analysis and Machine Intelligence</source>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <surname>Jun-Yan</surname>
            <given-names>Zhu</given-names>
          </string-name>
          , Taesung Park,
          <source>Phillip Isola, and Alexei A Efros</source>
          .
          <year>2017</year>
          .
          <article-title>Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networkss</article-title>
          . In Computer Vision (ICCV),
          <year>2017</year>
          IEEE International Conference on.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>