From 8d57b81807da2ca1e40d2f8c2a46a137f697a2be Mon Sep 17 00:00:00 2001 From: NotXia <35894453+NotXia@users.noreply.github.com> Date: Tue, 11 Feb 2025 11:17:25 +0100 Subject: [PATCH] Fix typo --- .../sections/_object_detection.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/year2/machine-learning-for-computer-vision/sections/_object_detection.tex b/src/year2/machine-learning-for-computer-vision/sections/_object_detection.tex index 0375cd8..078a81f 100644 --- a/src/year2/machine-learning-for-computer-vision/sections/_object_detection.tex +++ b/src/year2/machine-learning-for-computer-vision/sections/_object_detection.tex @@ -33,7 +33,7 @@ \item[Intersection over union (\texttt{IoU})] \marginnote{Intersection over union (\texttt{IoU})} Measures the amount of overlap between two boxes computed as the ratio of the area of intersection over the area of union: - \[ \texttt{IoU}(BB_i, BB_j) = \frac{\vert BB_i \cap BB_j \vert}{\vert BB_i \vert + \vert BB_j \vert - \vert BB_i \cup BB_j \vert} \] + \[ \texttt{IoU}(BB_i, BB_j) = \frac{\vert BB_i \cap BB_j \vert}{\vert BB_i \vert + \vert BB_j \vert - \vert BB_i \cap BB_j \vert} \] \begin{description} \item[True/false positive criteria]