Commit cf8f8750 authored by Mark Daoust's avatar Mark Daoust
Browse files

typo, demote extra h1s to h2, open toc.

parent 304ae9d3
...@@ -819,7 +819,7 @@ ...@@ -819,7 +819,7 @@
"id": "jbZ-7ICCENWG" "id": "jbZ-7ICCENWG"
}, },
"source": [ "source": [
"# Define **OpticalFlowTracker** class\n", "## Define **OpticalFlowTracker** class\n",
"\n", "\n",
"These help track the movement of each COTS object across the video frames.\n", "These help track the movement of each COTS object across the video frames.\n",
"\n", "\n",
...@@ -1086,7 +1086,7 @@ ...@@ -1086,7 +1086,7 @@
" overlap_index = 0\n", " overlap_index = 0\n",
" overlap_max = -1000\n", " overlap_max = -1000\n",
" for track_index, track in enumerate(self.tracks):\n", " for track_index, track in enumerate(self.tracks):\n",
" loggine.debug('Testing track %d', track_index)\n", " logging.debug('Testing track %d', track_index)\n",
" if track.det.class_id != detection.class_id:\n", " if track.det.class_id != detection.class_id:\n",
" continue\n", " continue\n",
" overlap = detection.bbox.iou(track.det.bbox)\n", " overlap = detection.bbox.iou(track.det.bbox)\n",
...@@ -1366,7 +1366,7 @@ ...@@ -1366,7 +1366,7 @@
"id": "QkpmYRyFAMlM" "id": "QkpmYRyFAMlM"
}, },
"source": [ "source": [
"# Output the detection results and play the result video\n", "## Output the detection results and play the result video\n",
"\n", "\n",
"Once the inference is done, we draw the bounding boxes and track information onto each frame's image. Finally, we combine all frames into a video for visualisation." "Once the inference is done, we draw the bounding boxes and track information onto each frame's image. Finally, we combine all frames into a video for visualisation."
] ]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment