ForensicsToolbox.ThumbnailReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of image-forensics Show documentation
Show all versions of image-forensics Show documentation
A library of image forensics algorithms for tampering localization.
The newest version!
package ForensicsToolbox;
import org.mongodb.morphia.annotations.Embedded;
import java.util.ArrayList;
import java.util.List;
/**
* Created by marzampoglou on 12/3/15.
*/
@Embedded
public class ThumbnailReport {
public int NumberOfThumbnails=0;
public List ThumbnailList= new ArrayList();
}