Skip to content

Commit

Permalink
Merge pull request #99 from NVIDIA-AI-IOT/roadfollow_hotfix
Browse files Browse the repository at this point in the history
fixed typo in road following notebook
  • Loading branch information
jaybdub authored Jul 2, 2019
2 parents b8f7119 + 756f8c0 commit a9b83ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notebooks/road_following/data_collection.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@
"\n",
"def display_xy(camera_image):\n",
" image = np.copy(camera_image)\n",
" x = x.value\n",
" y = y.value\n",
" x = x_slider.value\n",
" y = y_slider.value\n",
" x = int(x * 224 / 2 + 112)\n",
" y = int(y * 224 / 2 + 112)\n",
" image = cv2.circle(image, (x, y), 8, (0, 255, 0), 3)\n",
Expand Down Expand Up @@ -314,7 +314,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.7"
"version": "3.6.8"
}
},
"nbformat": 4,
Expand Down

0 comments on commit a9b83ed

Please sign in to comment.