Created
December 8, 2018 01:09
-
-
Save bourdakos1/1a294c8455c1eb786918eefa233150fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const x = prediction.bbox[0]; | |
const y = prediction.bbox[1]; | |
const width = prediction.bbox[2]; | |
const height = prediction.bbox[3]; | |
const canvas = document.getElementById("canvas"); | |
const ctx = canvas.getContext("2d"); | |
ctx.strokeRect(x, y, width, height); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment