Utils.JetMap 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!
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Utils;
/**
*
* @author markzampoglou
*/
public class JetMap {
static double[][] ColorMap = new double[][]{
{0, 0, 0.562500000000000},
{0, 0, 0.625000000000000},
{0, 0, 0.687500000000000},
{0, 0, 0.750000000000000},
{0, 0, 0.812500000000000},
{0, 0, 0.875000000000000},
{0, 0, 0.937500000000000},
{0, 0, 1.000000000000000},
{0, 0.062500000000000, 1.000000000000000},
{0, 0.125000000000000, 1.000000000000000},
{0, 0.187500000000000, 1.000000000000000},
{0, 0.250000000000000, 1.000000000000000},
{0, 0.312500000000000, 1.000000000000000},
{0, 0.375000000000000, 1.000000000000000},
{0, 0.437500000000000, 1.000000000000000},
{0, 0.500000000000000, 1.000000000000000},
{0, 0.562500000000000, 1.000000000000000},
{0, 0.625000000000000, 1.000000000000000},
{0, 0.687500000000000, 1.000000000000000},
{0, 0.750000000000000, 1.000000000000000},
{0, 0.812500000000000, 1.000000000000000},
{0, 0.875000000000000, 1.000000000000000},
{0, 0.937500000000000, 1.000000000000000},
{0, 1.000000000000000, 1.000000000000000},
{0.062500000000000, 1.000000000000000, 0.937500000000000},
{0.125000000000000, 1.000000000000000, 0.875000000000000},
{0.187500000000000, 1.000000000000000, 0.812500000000000},
{0.250000000000000, 1.000000000000000, 0.750000000000000},
{0.312500000000000, 1.000000000000000, 0.687500000000000},
{0.375000000000000, 1.000000000000000, 0.625000000000000},
{0.437500000000000, 1.000000000000000, 0.562500000000000},
{0.500000000000000, 1.000000000000000, 0.500000000000000},
{0.562500000000000, 1.000000000000000, 0.437500000000000},
{0.625000000000000, 1.000000000000000, 0.375000000000000},
{0.687500000000000, 1.000000000000000, 0.312500000000000},
{0.750000000000000, 1.000000000000000, 0.250000000000000},
{0.812500000000000, 1.000000000000000, 0.187500000000000},
{0.875000000000000, 1.000000000000000, 0.125000000000000},
{0.937500000000000, 1.000000000000000, 0.062500000000000},
{1.000000000000000, 1.000000000000000, 0},
{1.000000000000000, 0.937500000000000, 0},
{1.000000000000000, 0.875000000000000, 0},
{1.000000000000000, 0.812500000000000, 0},
{1.000000000000000, 0.750000000000000, 0},
{1.000000000000000, 0.687500000000000, 0},
{1.000000000000000, 0.625000000000000, 0},
{1.000000000000000, 0.562500000000000, 0},
{1.000000000000000, 0.500000000000000, 0},
{1.000000000000000, 0.437500000000000, 0},
{1.000000000000000, 0.375000000000000, 0},
{1.000000000000000, 0.312500000000000, 0},
{1.000000000000000, 0.250000000000000, 0},
{1.000000000000000, 0.187500000000000, 0},
{1.000000000000000, 0.125000000000000, 0},
{1.000000000000000, 0.062500000000000, 0},
{1.000000000000000, 0, 0},
{0.937500000000000, 0, 0},
{0.875000000000000, 0, 0},
{0.812500000000000, 0, 0},
{0.750000000000000, 0, 0},
{0.687500000000000, 0, 0},
{0.625000000000000, 0, 0},
{0.562500000000000, 0, 0},
{0.500000000000000, 0, 0}};
}