Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dusty-nv committed Jun 30, 2020
1 parent 05b2c66 commit 2029a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/aux-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2029a5d

Please sign in to comment.