From 2029a5da6d1c3182a506b143157f105e9db07f89 Mon Sep 17 00:00:00 2001 From: dusty-nv Date: Tue, 30 Jun 2020 16:17:22 -0400 Subject: [PATCH] updated docs --- docs/aux-image.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/aux-image.md b/docs/aux-image.md index cd28b76f9..3d31c0ea0 100644 --- a/docs/aux-image.md +++ b/docs/aux-image.md @@ -407,7 +407,7 @@ imgInputB = jetson.utils.loadImage('my_image_b.jpg') # allocate the output image, with dimensions to fit both inputs side-by-side imgOutput = jetson.utils.cudaAllocMapped(width=imgInputA.width + imgInputB.width, - height=max(imgInputA.height, imgInputB.height, + height=max(imgInputA.height, imgInputB.height), format=imgInputA.format) # compost the two images (the last two arguments are x,y coordinates in the output image)