Logical Operations - Or

Join two images using the bitwise OR operator. Images must be the same size. This is a wrapper for the Opencv Function bitwise_or.

logical_or(img1, img2, device, debug=None)

returns device, 'or' image

  • Parameters:
    • img1 - image object 1.
    • img2 - image object 2.
    • device - Counter for image processing steps
    • debug - None, "print", or "plot". Print = save to file, Plot = print to screen. Default = None
  • Context:
    • Used to combine to images. Very useful when combining image channels that have been thresholded seperately.
  • Example use:

Input binary image 1

Screenshot

Input binary image 2

Screenshot

import plantcv as pcv

# Combine two images that have had different thresholds applied to them.
# For logical 'or' operation object pixel in either image object will be included in 'or' image.
device, ab = pcv.logical_or(maskeda_thresh, maskedb_thresh, device, debug="print")

Combined image

Screenshot