├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data ├── lena.mat └── resChart.mat ├── functions ├── F_LENS2SENSOR.m ├── F_SENSOR2LENS.m ├── VEC.m ├── addNoise.m ├── createHDR.m ├── forwardModel.m └── getSampling.m ├── ptychMain.m ├── realData └── USAF.mat ├── realDataDemo.m ├── setupPtych.m └── simulationDemo.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/README.md -------------------------------------------------------------------------------- /data/lena.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/data/lena.mat -------------------------------------------------------------------------------- /data/resChart.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/data/resChart.mat -------------------------------------------------------------------------------- /functions/F_LENS2SENSOR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/functions/F_LENS2SENSOR.m -------------------------------------------------------------------------------- /functions/F_SENSOR2LENS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/functions/F_SENSOR2LENS.m -------------------------------------------------------------------------------- /functions/VEC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/functions/VEC.m -------------------------------------------------------------------------------- /functions/addNoise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/functions/addNoise.m -------------------------------------------------------------------------------- /functions/createHDR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/functions/createHDR.m -------------------------------------------------------------------------------- /functions/forwardModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/functions/forwardModel.m -------------------------------------------------------------------------------- /functions/getSampling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/functions/getSampling.m -------------------------------------------------------------------------------- /ptychMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/ptychMain.m -------------------------------------------------------------------------------- /realData/USAF.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/realData/USAF.mat -------------------------------------------------------------------------------- /realDataDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/realDataDemo.m -------------------------------------------------------------------------------- /setupPtych.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/setupPtych.m -------------------------------------------------------------------------------- /simulationDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jason-holloway-zz/towardCCA/HEAD/simulationDemo.m --------------------------------------------------------------------------------