Python/computer_vision
Ishan Dutta b2b8585e63
Add LeNet Implementation in PyTorch (#7070)
* add torch to requirements

* add lenet architecture in pytorch

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* add type hints

* remove file

* add type hints

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* update variable name

* add fail test

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* add newline

* reformatting

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2023-04-07 17:51:25 +02:00
..
__init__.py Add __init__.py files in all the directories (#2503) 2020-09-28 19:42:36 +02:00
cnn_classification.py Update cnn_classification.py (#8570) 2023-03-30 07:09:21 +02:00
flip_augmentation.py Remove useless code in doctests (#7733) 2022-10-27 22:52:00 +02:00
harris_corner.py pre-commit: Upgrade psf/black for stable style 2023 (#8110) 2023-02-01 18:44:54 +05:30
horn_schunck.py Update convolve function namespace (#7390) 2022-10-18 08:09:41 +02:00
lenet_pytorch.py Add LeNet Implementation in PyTorch (#7070) 2023-04-07 17:51:25 +02:00
mean_threshold.py Rename harriscorner.py to harris_corner.py (#4470) 2021-05-31 21:19:09 +05:30
mosaic_augmentation.py Make some ruff fixes (#8154) 2023-03-01 17:23:33 +01:00
pooling_functions.py Adding Pooling Algorithms (#5826) 2021-11-16 23:58:47 +01:00
README.md Add README files 2/8 (#5766) 2021-11-11 21:39:54 +08:00

Computer Vision

Computer vision is a field of computer science that works on enabling computers to see, identify and process images in the same way that human does, and provide appropriate output.

It is like imparting human intelligence and instincts to a computer. Image processing and computer vision are a little different from each other. Image processing means applying some algorithms for transforming image from one form to the other like smoothing, contrasting, stretching, etc.

While computer vision comes from modelling image processing using the techniques of machine learning, computer vision applies machine learning to recognize patterns for interpretation of images (much like the process of visual reasoning of human vision).