Skip to content

fix: normals plot titles copy-pasted from instance id - #73

Open
andrewwhitecdw wants to merge 1 commit into
NVlabs:mainfrom
andrewwhitecdw:bugfix/02-draw-images-47c92494
Open

fix: normals plot titles copy-pasted from instance id#73
andrewwhitecdw wants to merge 1 commit into
NVlabs:mainfrom
andrewwhitecdw:bugfix/02-draw-images-47c92494

Conversation

@andrewwhitecdw

Copy link
Copy Markdown

This PR addresses the following issue in examples/02_draw_images.py: normals plot titles copy-pasted from instance id.

Changes

  • examples/02_draw_images.py: normals plot titles copy-pasted from instance id.

Details

Before:

    plt.title('left instance id')
    plt.imshow(images['robot.front_camera.left.normals_image'])
    plt.subplot(nrows, 2, 8)
    plt.title('right instance id')
    plt.imshow(images['robot.front_camera.right.normals_image'])

After:

    plt.title('left normals')
    plt.imshow(images['robot.front_camera.left.normals_image'])
    plt.subplot(nrows, 2, 8)
    plt.title('right normals')
    plt.imshow(images['robot.front_camera.right.normals_image'])

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant