-
Notifications
You must be signed in to change notification settings - Fork 1
Documentation\RooBinaryImage
RJ Alexander Fang edited this page Apr 4, 2017
·
1 revision
Type: Public class
Purpose: Constructor for a RooImage
that takes in an image in the format of an OpenCV Mat
object.
Interface implemented/superclass: RooImage
Availability: Since Initial Release
The constructor for RooBinaryImage
takes in image in the form of an OpenCV Mat
object.
public RooBinaryImage(Mat mat)
Conducts a bitwise-OR operation on the target image.
public RooBinaryImage bitwiseOr(RooBinaryImage otherImage)
Conducts a bitwise-AND operation on the target image.
public RooBinaryImage bitwiseAnd(RooBinaryImage otherImage)
Conducts a negation operation on the target image.
public RooBinaryImage bitwiseNot()
Conducts an XOR operation on the target image.
public RooBinaryImage bitwiseXor(RooBinaryImage otherImage)
Finds all contours on the target image. Returns an array of RooContour
s.
public RooContour[] findContours()
Copyright © 2017 AFS RooBotics and the RooSight authors.