├── LICENSE ├── README.md ├── __init__.py ├── imresize.py └── test ├── README.md ├── lena_123x234_double.png ├── lena_123x234_uint8.png ├── lena_512x512.png └── test_imresize.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatheral/matlab_imresize/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatheral/matlab_imresize/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imresize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatheral/matlab_imresize/HEAD/imresize.py -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatheral/matlab_imresize/HEAD/test/README.md -------------------------------------------------------------------------------- /test/lena_123x234_double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatheral/matlab_imresize/HEAD/test/lena_123x234_double.png -------------------------------------------------------------------------------- /test/lena_123x234_uint8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatheral/matlab_imresize/HEAD/test/lena_123x234_uint8.png -------------------------------------------------------------------------------- /test/lena_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatheral/matlab_imresize/HEAD/test/lena_512x512.png -------------------------------------------------------------------------------- /test/test_imresize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatheral/matlab_imresize/HEAD/test/test_imresize.py --------------------------------------------------------------------------------