Commit ba04f1cd authored by narugo1992's avatar narugo1992
Browse files

dev(narugo): better enhance base layer

parent 5685cc5c
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
imgutils.generic.classify
=======================================

.. currentmodule:: imgutils.generic.classify

.. automodule:: imgutils.generic.classify



ClassifyModel
-----------------------------------------

.. autoclass:: ClassifyModel
    :members: __init__, predict_score, predict, clear



classify_predict_score
-----------------------------------------

.. autofunction:: classify_predict_score



classify_predict
-----------------------------------------

.. autofunction:: classify_predict


+17 −0
Original line number Diff line number Diff line
imgutils.generic.enhance
=======================================

.. currentmodule:: imgutils.generic.enhance

.. automodule:: imgutils.generic.enhance



ImageEnhancer
-----------------------------------------

.. autoclass:: ImageEnhancer
    :members: __init__, process


+13 −0
Original line number Diff line number Diff line
imgutils.generic
=====================

.. currentmodule:: imgutils.generic

.. automodule:: imgutils.generic


.. toctree::
    :maxdepth: 3

    classify
    enhance
+1 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@ configuration file's structure and their versions.
    api_doc/data/index
    api_doc/detect/index
    api_doc/edge/index
    api_doc/generic/index
    api_doc/metrics/index
    api_doc/ocr/index
    api_doc/operate/index
+4 −0
Original line number Diff line number Diff line
"""
Overview:
    Generic utilities for some more features.
"""
from .classify import *
from .enhance import *
Loading