diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-10 10:24:42 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-10 10:24:42 +0300 |
commit | 27e36a6dd2546731c37fcc42bb372ad9a552e410 (patch) | |
tree | 0e6b1a89932cbcfe9db9b798a2b8949b26d187f7 /README.md | |
parent | code style (diff) | |
download | filters-27e36a6dd2546731c37fcc42bb372ad9a552e410.tar.gz filters-27e36a6dd2546731c37fcc42bb372ad9a552e410.zip |
fix Pylint warnings
Diffstat (limited to '')
-rw-r--r-- | README.md | 20 |
1 files changed, 12 insertions, 8 deletions
@@ -13,11 +13,11 @@ Prerequisites The versions below have been verified to work properly. -| Software | Version | -| ------------- | ------- | -| CPython | 3.5.1 | -| numpy | 1.11.0 | -| opencv-python | 3.1.0 | +Software | Version +------------- | ------- +CPython | 3.5.1 +numpy | 1.11.0 +opencv-python | 3.1.0 [numpy]: http://www.numpy.org/ [opencv-python]: http://opencv.org/ @@ -46,11 +46,15 @@ The complete list of usable scripts is given below. * gaussian_blur.py — Apply Gaussian blur to an image. * shift.py — Shift an image by a few pixels in a specified direction. -Linting -------- +Development +----------- + +### Linting Requires [PyLint]. -Run from the top-level directory: + + > cd + D:\workspace\personal\filters > pylint filters ... |