Skip to content

OpenCV based visual logger for debugging,logging and testing image processing code

License

Notifications You must be signed in to change notification settings

marisnb/opencv-log

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

opencv-log

CircleCI Coverage Status Pip Version MIT License

OpenCV based visual logger for debugging, logging and testing image processing code

Installation

Use the package manager pip to install foobar.

pip install opencv-log

Usage

Log \ Debug

import cvlog as log

# Set default mode and level
# If we dont set, then default mode is NONE
# and the default level is ERROR

log.set_mode(log.Mode.LOG)
log.set_level(log.Level.TRACE)

# image read using opencv

img = cv2.imread("sample.png")

# log or show the image or do nothing based on
# the current mode and current level

log.image(log.Level.INFO, img)

log.image(log.Level.ERROR, img)

log.image(log.Level.TRACE, img)

Test Report

import cvtest as test

# Process Image from image path
def process_image(imagepath):
    if imagepath == "error.png":
        raise Exception("Some exception in processing image")
    img = cv2.imread(imagepath)
    return img

test_image_paths=["example1.png","example1.png","error.png"]

# This shows image using cv2.imshow,
# On presssing 'y' key, it report it as PASS
# On pressing any other key, it report it as FAIL and save output image for verification
# On any exception, it report it as ERROR with exception stack
test.report(test_image_paths, process_image)

Log Modes

import cvlog as log
log.set_mode(log.Mode.DEBUG)

Set mode using ENV variable

os.environ['CVLOG_MODE'] = "DEBUG"

Mode.NONE (Default)

This is the default mode if we don't set mode.

Used in production. It neither creates HTML file nor shows an image.

Mode.LOG

Logs the image to interactive HTML to analyze the issue offline.

image

Mode.DEBUG

Shows the image using cv2.imshow instead of logging to debug steps in the development.

It on move on to next log step on pressing any key and exit the code on pressing ESC

image

Log Levels

import cvlog as log
log.set_level(log.Level.TRACE)

or

os.environ['CVLOG_MODE'] = "TRACE"
  • Level.ERROR (Default) - Log or Show only ERROR level
  • Level.INFO - Log or Show INFO and ERROR level
  • Level.TRACE - Log or Show TRACE, INFO and ERROR level steps

Level valid for DEBUG and LOG mode

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

About

OpenCV based visual logger for debugging,logging and testing image processing code

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 78.2%
  • HTML 21.8%