From 51a5aa802667456d14af99c181550e63d780fca3 Mon Sep 17 00:00:00 2001 From: James Braza Date: Sun, 2 Jan 2022 15:30:23 -0500 Subject: [PATCH] Added forgotten capitalization of code tag --- examples/pybullet/examples/pointCloudFromCameraImage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pybullet/examples/pointCloudFromCameraImage.py b/examples/pybullet/examples/pointCloudFromCameraImage.py index 16e85db2de..23fbe302ff 100644 --- a/examples/pybullet/examples/pointCloudFromCameraImage.py +++ b/examples/pybullet/examples/pointCloudFromCameraImage.py @@ -73,7 +73,7 @@ def getRayFromTo(mouseX, mouseY): img = p.getCameraImage(imgW, imgH, renderer=p.ER_BULLET_HARDWARE_OPENGL) rgbBuffer = np.reshape(img[2], (imgH, imgW, 4)) -# Note: this depth buffer's reshaping does not match the [w, h] convention for +# NOTE: this depth buffer's reshaping does not match the [w, h] convention for # OpenGL depth buffers. See getCameraImageTest.py for an OpenGL depth buffer depthBuffer = np.reshape(img[3], [imgH, imgW]) print("rgbBuffer.shape=", rgbBuffer.shape)