├── .gitignore ├── README.md ├── deformation_generation.py ├── measure_deformation.py ├── predic ├── C_First_Order.py ├── DIC_NR_images.py └── __init__.py ├── requirements.txt └── test ├── __main__.py ├── test_C_First_Order.py ├── test_DIC_NR_images.py └── testing_images ├── def50.bmp ├── def500.bmp ├── ref50.bmp ├── ref500.bmp └── test_image_1.bmp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/README.md -------------------------------------------------------------------------------- /deformation_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/deformation_generation.py -------------------------------------------------------------------------------- /measure_deformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/measure_deformation.py -------------------------------------------------------------------------------- /predic/C_First_Order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/predic/C_First_Order.py -------------------------------------------------------------------------------- /predic/DIC_NR_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/predic/DIC_NR_images.py -------------------------------------------------------------------------------- /predic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/predic/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/test/__main__.py -------------------------------------------------------------------------------- /test/test_C_First_Order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/test/test_C_First_Order.py -------------------------------------------------------------------------------- /test/test_DIC_NR_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/test/test_DIC_NR_images.py -------------------------------------------------------------------------------- /test/testing_images/def50.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/test/testing_images/def50.bmp -------------------------------------------------------------------------------- /test/testing_images/def500.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/test/testing_images/def500.bmp -------------------------------------------------------------------------------- /test/testing_images/ref50.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/test/testing_images/ref50.bmp -------------------------------------------------------------------------------- /test/testing_images/ref500.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/test/testing_images/ref500.bmp -------------------------------------------------------------------------------- /test/testing_images/test_image_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texm/PReDIC/HEAD/test/testing_images/test_image_1.bmp --------------------------------------------------------------------------------