Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Commit

Permalink
Add chapter "Problems with image recognition" (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystucki authored and janhohenheim committed Nov 30, 2016
1 parent 15e196f commit 8502f2d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.tex
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@

\section{Convolutional Neural Networks}
\subsection{Problems with image recognition}
.
\subfile{sections/"convolutional neural networks"/"problems with image recognition"}
\subsection{Subsampling}
\subfile{sections/"Convolutional Neural Networks/Subsampling/subsampling.tex"}
\subfile{sections/"convolutional neural networks/subsampling/subsampling.tex"}
\subsubsection{Kernels}
\subfile{sections/"Convolutional Neural Networks/Subsampling/kernerls.tex"}
\subfile{sections/"convolutional neural networks/subsampling/kernerls.tex"}
\subsubsection{Poolers}
\subfile{sections/"Convolutional Neural Networks/Subsampling/poolers.tex"}
\subfile{sections/"convolutional neural networks/subsampling/poolers.tex"}
\subsection{Structure}
.
\newpage
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Most neural networks are unable to handle the amount of data contained in an image.
For example an image with a resolution of 3264x2448 (8 Megapixels) would result in almost 24 million inputs, as each pixel is split into its red, green and blue parts.

Another challenge is the detection of so called "features" across an image. Traditional neural networks only detect a feature at a specific location in the image.
This is a big issue in image recognition, as you almost always want the entire image to be handled equally.
A self-driving car should recognize a stop sign, regardless of its position in the image.

0 comments on commit 8502f2d

Please sign in to comment.