Where to calculate the envelope

This commit is contained in:
GuillBernard 2011-11-30 23:46:21 +01:00
parent f3c4ba7b0e
commit f04d97bb30
2 changed files with 6 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@ -74,6 +74,12 @@ int main()
// Part 2: Average // // Part 2: Average //
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
// Calculate the upper envelope
// ??
// Calculate the lower envelope
// ??
// Calculate the Average
CImg<unsigned char> imgMoyenne = (imgMax+imgMin)/2; CImg<unsigned char> imgMoyenne = (imgMax+imgMin)/2;
CImgDisplay dispMoyenne(imgMoyenne,"Image Moyenne"); CImgDisplay dispMoyenne(imgMoyenne,"Image Moyenne");