removed build error

Whitespaces removed
This commit is contained in:
siddharth 2014-04-12 04:34:41 +05:30
parent 14d0b763ec
commit 88d05a89d4
4 changed files with 6 additions and 3 deletions

View File

@ -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.

View File

@ -10,7 +10,7 @@ Transforms a color image to a grayscale image. It is a basic tool in digital pri
.. ocv:function:: void decolor( InputArray src, OutputArray grayscale, OutputArray color_boost )
:param src: Input 8-bit 3-channel image.
:param src: Input 8-bit 3-channel image.
:param grayscale: Output 8-bit 1-channel image.

View File

@ -192,7 +192,7 @@ void Domain_Filter::compute_Rfilter(Mat &output, Mat &hz, float sigma_h)
{
for(int c = 0; c<channel; c++)
{
temp.at<float>(i,j*channel+c) = temp.at<float>(i,j*channel+c) +
temp.at<float>(i,j*channel+c) = temp.at<float>(i,j*channel+c) +
(temp.at<float>(i,(j-1)*channel+c) - temp.at<float>(i,j*channel+c)) * V.at<float>(i,j);
}
}

View File

@ -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]);