Skip to content

Implements a personalized machine learning approach for image privacy classification.

License

Notifications You must be signed in to change notification settings

MKLab-ITI/image-privacy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image-privacy

This is a Java project that contains the experimental testbed that we used in the following publication:

E. Spyromitros-Xioufis, S. Papadopoulos, A. Popescu, Y. Kompatsiaris, "Personalized Privacy-aware Image Classification", Proc. International Conference on Multimedia Retrieval (ICMR), New York, USA, June 6-9, 2016.

All the experimental results of the paper can be replicated by simply executing the main method of the ExperimentsRunner class (after setting the datasetFolder variable to point at the location where the datasets reside).

The datasets can be found at: the following link and are divided in two subfolders, '/youralert' and '/picalert', each one containing the datasets that we created out of the images and ground truth of the corresponding image privacy collection (YourAlert/PicAlert). For both datasets we have extracted 'vlad', 'cnn', and 'semfeat' features (as described in our paper) and, additionally, 'edch' and 'bow' features have been kindly provided for PicAlert from the PicAlert team. Thus, we have composed 3 YourAlert and 5 PicAlert datasets. For all datasets we use Weka's sparse ARFF format with a header that in all cases looks like:

@ATTRIBUTE id String
@ATTRIBUTE user {u11, u10, u13, u12, u15, u14, u17, u16, u1, u19, u2, u18, u3, u4, u5, u6, u7, u8, u9, u20, u22, u21, u24, u23, u26, u25, u27}
@ATTRIBUTE source {picalert, youralert}
@ATTRIBUTE feat_1 numeric
@ATTRIBUTE feat_2 numeric
...
@ATTRIBUTE feat_K numeric
@ATTRIBUTE private {0,1}

where the 'id' attribute contains the photo id, the 'user' attribute contains the user id (always missing for PicAlert), the 'source' attribute has the value 'picalert' for PicAlert and 'youralert' for 'YourAlert', 'feat_1',...,'feat_K' are the visual features and, finally, 'private' is the class attribute that is '0' for public and '1' for private images.

About

Implements a personalized machine learning approach for image privacy classification.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages