removed build error

Whitespaces removed
pull/2608/head
siddharth 11 years ago
parent 14d0b763ec
commit 88d05a89d4
  1. 1
      modules/photo/doc/cloning.rst
  2. 4
      samples/cpp/tutorial_code/photo/decolorization/decolor.cpp

@ -95,4 +95,3 @@ region, giving its contents a flat aspect. Here Canny Edge Detector is used.
The algorithm assumes that the color of the source image is close to that of the destination. This assumption means that when the colors don't match, the source image color gets tinted toward the color of the destination image.
.. [PM03] Patrick Perez, Michel Gangnet, Andrew Blake, "Poisson image editing", ACM Transactions on Graphics (SIGGRAPH), 2003.

@ -6,6 +6,9 @@
*
* This tutorial demonstrates how to use OpenCV Decolorization Module.
*
* Input:
* Color Image
*
* Output:
* 1) Grayscale image
* 2) Color boost image
@ -23,6 +26,7 @@ using namespace cv;
int main(int argc, char *argv[])
{
CV_Assert(argc == 2);
Mat I;
I = imread(argv[1]);

Loading…
Cancel
Save