Image Statistics Calculations
[Image Processing]
Detailed Description
- Operations to calculate some statistics over images.
- See im_process_ana.h
Data Structures | |
| struct | _imStats |
Typedefs | |
| typedef _imStats | imStats |
Functions | |
| float | imCalcRMSError (const imImage *image1, const imImage *image2) |
| float | imCalcSNR (const imImage *src_image, const imImage *noise_image) |
| unsigned long | imCalcCountColors (const imImage *src_image) |
| void | imCalcHistogram (const unsigned char *data, int count, unsigned long *histo, int accum) |
| void | imCalcUShortHistogram (const unsigned short *data, int count, unsigned long *histo, int accum) |
| void | imCalcGrayHistogram (const imImage *src_image, unsigned long *histo, int accum) |
| void | imCalcImageStatistics (const imImage *src_image, imStats *stats) |
| void | imCalcHistogramStatistics (const imImage *src_image, imStats *stats) |
| void | imCalcHistoImageStatistics (const imImage *src_image, int *median, int *mode) |
Typedef Documentation
|
|
Numerical Statistics Structure |
Function Documentation
|
||||||||||||
|
Calculates the RMS error between 2 images (Root Mean Square Error). |
|
||||||||||||
|
Calculates the SNR of an image and its noise (Signal Noise Ratio). |
|
|
Count the number of different colors in an image. |
|
||||||||||||||||||||
|
Calculates the histogram of a IM_BYTE data. |
|
||||||||||||||||||||
|
Calculates the histogram of a IM_USHORT data. |
|
||||||||||||||||
|
Calculates the gray histogram of an image. |
|
||||||||||||
|
Calculates the statistics about the image data. |
|
||||||||||||
|
Calculates the statistics about the image histogram data. |
|
||||||||||||||||
|
Calculates some extra statistics about the image histogram data. |