Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion doc/source/example_usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ To use the default pipeline which contains all available augmentations and sensi

image = cv2.imread("image.png")

data = pipeline(image)
# 1. Returns numpy array directly
augmented = pipeline(image)

# 2. Explicitly request dictionary
data = pipeline.augment(image, return_dict=1)

augmented = data["output"]

Expand Down
Loading