Introduction¶
What’s improc¶
improc
is an image processing toolbox, maintained by antsfamily, you can download from here.
blkptcs
(images <—> blocks, images –>patches) : spliting image into blocks, sampling patches from images, show blocks or patches, selecting patches or blocks(std
orvar
), fight image blocks back to images and so on.encoding
: huffman encoding and decodingevaluation
: functions of assessmentutils
: utility functions –> prep-rocessing(scale, normalization/denormalization)
How to use improc¶
Installation¶
You can install it by:
1 2 3 | pip install -r requirements.txt
python setup.py sdist
sudo python setup.py install --record files.txt
|
or you can add it’s path into PYTHONPATH
environment variable by:
export PYTHONPATH=/mnt/d/library/zhi/improc:$PYTHONPATH
Uninstallation¶
You can use the following commands to uninstall it:
1 2 3 | pip uninstall improc
# or
cat files.txt | xargs rm -rf
|
or you can just remove the environment that you have added:
export PYTHONPATH=/mnt/d/library/zhi/improc:$PYTHONPATH
Usage¶
You can see the test and examples folders for more demos.