Skip to main content

Package about image recognition

Project description

Python package with image recognition functionality by vladdemo

This package was developed for scientific purposes, the use of which is available to everyone

How to install

The package will be installed using pip

Set up a virtual environment for your new Python project

python3 -m venv image_recognition_venv

After that, go to your project and open the virtual environment directory, activate it.

source <path_to_venv>/bin/activate

Installing the package

pip install image-recognition-vladdemo

Using functionality in a project

Imports

from image_recognition_vladdemo.main import ImageRecognition

This import allows you to get the main class

Main Variables

image_path = "new.png"
language = "eng"

The path to the image can be specified direct or relative. Next we indicate the language.

Creating an Object

image = ImageRecognition(image_path, language)

Getting text from an image

text = image.get_text_from_photo()

Congratulations. You got the text from the image.

author = "Vlad Demchenko"

Additional instructions for creating your own Python package and uploading to PyPI

Linux

python3 -m pip install --upgrade pip

Create a project with the following structure

image_recognition/
├── LICENSE
├── pyproject.toml
├── README.md
├── setup.cfg
├── src/
│   └── image_recognition_demo_test/
│       ├── __init__.py
│       └── main.py
└── tests/
touch pyproject.toml
touch setup.cfg
mkdir src
mkdir src/image_recognition_demo_test
touch src/image_recognition_demo_test/__init__.py
touch src/image_recognition_demo_test/main.py
mkdir tests

pyproject.toml

This file tells tools like pip and build how to create your project

[build-system]
requires = [
    "setuptools>=42",
    "wheel"
]
build-backend = "setuptools.build_meta"

build-system.requires gives a list of packages that are needed to build your package. Listing something here will only make it available during the build, not after it is installed.

build-system.build-backend is the name of Python object that will be used to perform the build. If you were to use a different build system, such as flit or poetry, those would go here, and the configuration details would be completely different than the setuptools configuration described below.

Setup.cfg setup

Using setup.cfg is a best practice, but you could have a dynamic setup file using setup.py

[metadata]
name = example-pkg-YOUR-USERNAME-HERE
version = 0.0.1
author = Example Author
author_email = author@example.com
description = A small example package
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pypa/sampleproject
project_urls =
    Bug Tracker = https://github.com/pypa/sampleproject/issues
classifiers =
    Programming Language :: Python :: 3
    License :: OSI Approved :: MIT License
    Operating System :: OS Independent

[options]
package_dir =
    = src
packages = find:
python_requires = >=3.6

[options.packages.find]
where = src

Running the build

Make sure your build tool is up to date

Linux

python3 -m pip install --upgrade build

Create the build

python -m build

Uploading - pre

Linux

python3 -m pip install --upgrade twine

Upload

Linux

python3 -m twine upload --repository pypi dist/*

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

image_recognition_vladdemo-1.5.0.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

image_recognition_vladdemo-1.5.0-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file image_recognition_vladdemo-1.5.0.tar.gz.

File metadata

File hashes

Hashes for image_recognition_vladdemo-1.5.0.tar.gz
Algorithm Hash digest
SHA256 ce58d5aba2dfe77eb1b0ab8492c02a645ed793f4a2260bf9f8117f8f53e5cf3e
MD5 e9b6f5e9a0ade1c81cc1e500c1f6dbd9
BLAKE2b-256 22ca7e11c60384f7229a1748b5cd4b33aacc320a921f43056cc81bd7deb46b05

See more details on using hashes here.

File details

Details for the file image_recognition_vladdemo-1.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for image_recognition_vladdemo-1.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bddcf5063918b8e6dcac6fc8bdc676c6fb07edb1a9a7fc5e5b2022738010ec50
MD5 1bf65ebe37b601ff8acbcadeb78dca7c
BLAKE2b-256 56c253d03251fa3e3edf3001c26e63341d4657970bce68153165a16bcca1fa15

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page