}
private void checkSimilarity(final String origname, final String samplename, boolean s) throws IOException
{
LUVHistorgam orig = LUVHistorgam.build(readImage(origname));
LUVHistorgam sample = LUVHistorgam.build(readImage(samplename));
final double c = orig.distcompare(sample);
System.out.println(origname + " - " + samplename + ": " + c);
if(s)
{