Skip to content

Commit

Permalink
Corrected naming error for KITTI (not KITTY)
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierbichler-cea committed Nov 16, 2017
1 parent 9100930 commit f4fe14b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Binary file modified manual/manual.pdf
Binary file not shown.
12 changes: 6 additions & 6 deletions manual/manual.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1776,8 +1776,8 @@ \subsubsection{Other built-in databases}
\end{center}
\paragraph{\texorpdfstring{%%
\lstinline[basicstyle=\ttfamily\bfseries]!KITTY_Database!}{KITTY\_Database}}
KITTY Database.
\lstinline[basicstyle=\ttfamily\bfseries]!KITTI_Database!}{KITTI\_Database}}
KITTI Database.
\begin{center}
\begin{tabular}{| p{5cm} | p{10cm} | }
Expand All @@ -1792,10 +1792,10 @@ \subsubsection{Other built-in databases}
\end{center}
\paragraph{\texorpdfstring{%%
\lstinline[basicstyle=\ttfamily\bfseries]!KITTY_Road_Database!}
{KITTY_Road\_Database}}
KITTY Road Database.
The KITTY Road Database provide ROI which can be used to road segmentation.
\lstinline[basicstyle=\ttfamily\bfseries]!KITTI_Road_Database!}
{KITTI_Road\_Database}}
KITTI Road Database.
The KITTI Road Database provide ROI which can be used to road segmentation.
\begin{center}
\begin{tabular}{| p{5cm} | p{10cm} | }
Expand Down
4 changes: 2 additions & 2 deletions src/Database/KITTI_Road_Database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void N2D2::KITTI_Road_Database::loadKITTIRoadStimuli(const std::string& dirPath,
throw std::runtime_error("Couldn't open database directory: "
+ dirPath);

// Read all data files in the kitty/data_road/training directory
// Read all data files in the kitti/data_road/training directory
while ((pFile = readdir(pDirData))) {
const std::string fileName(pFile->d_name);
const std::string filePath(dirPath + "/" + fileName);
Expand Down Expand Up @@ -96,7 +96,7 @@ void N2D2::KITTI_Road_Database::loadKITTIRoadStimuli(const std::string& dirPath,
files.push_back(filePath);
}
}
// Read all gt files in the kitty/data_road/gt_image_2 directory
// Read all gt files in the kitti/data_road/gt_image_2 directory
while ((pFile = readdir(pDirLabel))) {
const std::string fileName(pFile->d_name);
const std::string filePath(labelPath + "/" + fileName);
Expand Down

0 comments on commit f4fe14b

Please sign in to comment.