[root]/Modules/IntensityNormalization
Testing
(1 files, 0 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 15 (100.0%) | 1716 (100.0%) | 114.4 |
| sylvain | 13 (86.7%) | 1716 (100.0%) | 132.0 |
| jcfr | 2 (13.3%) | 0 (0.0%) | 0.0 |
ENH: In CMakeLists.txt, change deprecated SUBDIRS command into ADD_SUBDIRECTORY
See http://cmake.org/cmake/help/cmake-2-8-docs.html#command:subdirs
when subdirs command was taking a list of directory, change it
using the following pattern:
Before:
subdirs(sagarmatha kumbhu eiger)
After:
SET(dirs
sagarmatha
kumbhu
eiger
)
FOREACH(dir ${dirs})
ADD_SUBDIRECTORY(${dir})
ENDFOREACH(dir)
0 lines of code changed in 1 file:
ENH: Update CMakeLists.txt - CMake 2.6 is now required
The following line have been added:
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
IF(COMMAND CMAKE_POLICY)
CMAKE_POLICY(SET CMP0003 NEW)
ENDIF(COMMAND CMAKE_POLICY)
MARK_AS_ADVANCED(CMAKE_BACKWARDS_COMPATIBILITY)
0 lines of code changed in 1 file:
ENH: adding a module to normalize the intensity of images. It is designed as a pre-processing step required for the Expectation-Maximization (EM) algorithm. The algorithm works as follows. First it computes the histogram of the input image, second it locates the mean value of the histogram, and finally it applies a normalization factor on the entire image. The parameters are the percentage of the pixel intensities to take into account and the regularization factor applied to the histogram. The rationale for not selecting the entire spectrum of pixel intensities is to remove the outliers in the image histogram. The regularization of the histogram is performed by an iterative averaging of the histogram bins. The significance of the regularization factor is a number of regularization steps. A regularization factor will smooth out the local minima in the histogram allowing for a better localization of the mean intensity at the cost of a larger processing time.
1716 lines of code changed in 13 files: