معرفی شرکت ها


PyReadLabels-1.1.5


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Python Package to read labels from image
ویژگی مقدار
سیستم عامل OS Independent
نام فایل PyReadLabels-1.1.5
نام PyReadLabels
نسخه کتابخانه 1.1.5
نگهدارنده []
ایمیل نگهدارنده []
نویسنده santh kumar tadi
ایمیل نویسنده santhtadi@gmail.com
آدرس صفحه اصلی https://github.com/santhtadi/PyReadLabels
آدرس اینترنتی https://pypi.org/project/PyReadLabels/
مجوز MIT
# PyReadLabels A Python Package to read labels from an image ## USAGE ``` from PyReadLabels import pyreadlabels ``` To return a dictionary with the following keys: lines ``` result = pyreadlabels.detect( "path_to_image" ) print( result["lines"] ) ``` To return a dictionary with the following keys: lines, image, pos ``` result = pyreadlabels.detect( "path_to_image", conf=0.25, get_positions=True, x_line=0.2, y_line=0.1, return_image=True ) print( result ) ``` conf - confidence score above which the label characters are considered. x_line - the percentage difference between x coordinates above which a new line starts. y_line - the percentage difference between x coordinates above which a new line starts. get_positions - Boolean Value, True returns a "pos" key which contains boxes (absolute x,y,w,h values), correspondind labels, and confidences return_image - Boolean Value, True Returns a "image" key which can be used to display image. ``` import cv2 cv2.imshow( "result", result["image"] ) cv2.waitKey(0) cv2.destroyAllWindows() ```


نیازمندی

مقدار نام
- opencv-python
- numpy


زبان مورد نیاز

مقدار نام
>=3.4 Python


نحوه نصب


نصب پکیج whl PyReadLabels-1.1.5:

    pip install PyReadLabels-1.1.5.whl


نصب پکیج tar.gz PyReadLabels-1.1.5:

    pip install PyReadLabels-1.1.5.tar.gz