Annotate your Python requirements.txt file with summaries of each package

Annotate your Python requirements.txt file with a short summary of each package. This tool: takes a Python requirements.txt file as input fetches the summary of each package from the PyPi registry outputs an equivalent requirements list with added comments summarizing each package It can be used as a Python module or a command line script. Example Before: black==21.9b0 gunicorn==20.1.0 pytz==2021.3 requests==2.26.0 rope==0.20.1 whitenoise==5.3.0 After:

Read more

Annotation tool using GrabCut() of OpenCV

Annotation tool using GrabCut() of OpenCV. It can be used to create datasets for semantic segmentation. * Due to GrabCut’s algorithm, it is suitable for annotation of data with clear boundaries. opencv-python 4.5.2.54 or later Pillow 7.2.0 or later PySimpleGUI 4.32.1 or later │  app.py │  config.json │ ├─core │  │  gui.py │  └─util.py │ ├─input │ └─output ├─image └─annotation app.py, core/gui.py, core/util.py Source code. input Image files are stored in this directory. output Directory to save annotation results. image:The […]

Read more