├── Makefile ├── README ├── filters.h ├── img_process.c ├── img_process.h ├── tigru.pgm ├── tigru_blur.pgm ├── tigru_contrast.pgm ├── tigru_emboss.pgm ├── tigru_mean_removal.pgm └── tigru_sharpen.pgm /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosminstefanxp/MPI-Image-Processor/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosminstefanxp/MPI-Image-Processor/HEAD/README -------------------------------------------------------------------------------- /filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosminstefanxp/MPI-Image-Processor/HEAD/filters.h -------------------------------------------------------------------------------- /img_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosminstefanxp/MPI-Image-Processor/HEAD/img_process.c -------------------------------------------------------------------------------- /img_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosminstefanxp/MPI-Image-Processor/HEAD/img_process.h -------------------------------------------------------------------------------- /tigru.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosminstefanxp/MPI-Image-Processor/HEAD/tigru.pgm -------------------------------------------------------------------------------- /tigru_blur.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosminstefanxp/MPI-Image-Processor/HEAD/tigru_blur.pgm -------------------------------------------------------------------------------- /tigru_contrast.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosminstefanxp/MPI-Image-Processor/HEAD/tigru_contrast.pgm -------------------------------------------------------------------------------- /tigru_emboss.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosminstefanxp/MPI-Image-Processor/HEAD/tigru_emboss.pgm -------------------------------------------------------------------------------- /tigru_mean_removal.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosminstefanxp/MPI-Image-Processor/HEAD/tigru_mean_removal.pgm -------------------------------------------------------------------------------- /tigru_sharpen.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosminstefanxp/MPI-Image-Processor/HEAD/tigru_sharpen.pgm --------------------------------------------------------------------------------