In OpenCV, if Y indexes lines, X columns and C channels, the right nesting >of loops is
C inside X inside Y
Why is imagery with 8 bits per pixel commonly used in vision software?
the human eye sees less than 8 bits worh of grey levels
Why are digital images usually rectangularly-sampled?
because they are easier to process with a computer
After contrast-stretching, an over-exposed image which has only a few grey levels occupied will have a histogram that
tends to show small spikes across the entire range of grey levels
If a histogram has most of its values bunched together at its left, how does the image appear?
under-exposed
Why does EVE use float values for pixels?
it reduces the number of places that the effects of rounding have to be considered
The correlation coefficient between two images tells us
how similar they are, ignoring gain or offset changes
What is plotted along the abscissa (x-axis) of a histogram?
grey level
Why would you contrast-stretch an image?
to spread out the grey levels which are occupied
When computing a histogram h, what operation do you do a pixel of value v?
h[v] = h[v] + 1