Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SoftwareGuide/Latex/Architecture/DataRepresentation.tex
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ \subsection{RGB Images}
repeated with 24 hours intervals.} receptors are sensitive to the lighting
conditions that differentiate day from night. These receptors evolved as a
mechanism for synchronizing the physiology with the time of the day. Cellular
controls for circadian rythms are present in every cell of an organism and are
controls for circadian rhythms are present in every cell of an organism and are
known to be exquisitively precise~\cite{Lodish2000}.

The RGB space has been constructed as a representation of a physiological
Expand Down
4 changes: 2 additions & 2 deletions SoftwareGuide/Latex/Architecture/Iterators.tex
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ \subsection{Moving Iterators}
important to remember because attempting to dereference an iterator at its end
position will have undefined results.

%Moving iteators
%Moving iterators
ITK iterators are moved back and forth across their iterations using the
decrement and increment operators.

Expand Down Expand Up @@ -276,7 +276,7 @@ \subsection{Accessing Data}

\subsection{Iteration Loops}
\label{sec:IterationExample}
% Now give a psuedo code example for putting all of this together.
% Now give a pseudo code example for putting all of this together.
Using the methods described in the previous sections, we can now write a simple
example to do pixel-wise operations on an image. The following code calculates
the squares of all values in an input image and writes them to an output image.
Expand Down
2 changes: 1 addition & 1 deletion SoftwareGuide/Latex/Architecture/SystemOverview.tex
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ \section{Wrapping}

\small
\begin{minted}{python}
Dimesion = 3
Dimension = 3
index = itk.Index[Dimension]()
index_as_tuple = tuple(index)
index_as_list = list(index)
Expand Down