Ask Your Question

rahulvg's profile - activity

2020-06-09 18:12:15 -0600 received badge  Notable Question (source)
2020-01-23 02:25:41 -0600 received badge  Notable Question (source)
2018-01-25 03:18:23 -0600 received badge  Popular Question (source)
2017-12-06 21:26:56 -0600 received badge  Popular Question (source)
2017-09-06 17:11:11 -0600 received badge  Student (source)
2014-12-09 03:21:33 -0600 answered a question i am getting this error please help me

Please check if you have included the path of opencv hpp files in "Project Properties ->Congig Properties --> C/C++ --> Additional Include directories"

2014-12-09 01:01:21 -0600 asked a question Time to train Cascasde Classifier

Hi, I have been trying to train cascade classifier with 6k positive and 2k negative images.It has been seven days still the training is not finished,though I can see the progress on cmd but I want to know avg time required!

2014-11-18 02:23:59 -0600 asked a question Skin Detection Opencv-Temperature Parameter

I was working on the skin detection in OpenCV.I am using YCrCb color range for detection.It was working fine for most of the image but in one case it was not working. Image Not Working

So I tried to do some adjustment in the images because you can see that skin color range is not even visible,so I edited the pic in Windows Photos Application in Window 8.In that software I changed "color->Temperature" setting and set the value to 80 or something. The output image was this.

Now the Skin detection works perfectly fine.Can anyone explain me the temperature parameter used in Photos app and what it exactly does?

2014-09-19 00:39:00 -0600 asked a question How to train ASM for the Neck detection?

Hi I am working on face and neck detection.For face its very easy to detect but I want to detect neck and shoulder joint,so I am thinking of training ASM for the neck point detection.Can someone help me with the initial procedure,like how to start training and etc.

2014-09-11 01:14:20 -0600 asked a question Neck detection using opencv

0 down vote favorite

Hi I am trying to detect the neck point in an image.I am using asm to detect the feature points of the face but i dont know how to detect the neck.Is there any algo or measurement to detect it?

2014-09-02 04:17:25 -0600 answered a question How to count person in video?

i think you "if" check should be
if cy >= 75: counter=counter+1;

Why dont you use the haar cascade to detect face which will return you a rectangle per person instead of detecting contours....

2014-09-01 02:21:44 -0600 received badge  Supporter (source)
2014-08-28 05:14:49 -0600 asked a question Hand Detection

I am trying to detect hand using opencv and c++.

I am able to find the contour of the hand(Positive image)with person hand present in the image.Basically I am finding largest contour and consider it as hand contour.Lets say in the given image the hand is not present then i will take any contour and consider it as the hand.

So I started thinking can I use the haar cascade to determine the rectangle of the hand and focus on that area,but I tried searching online for the xml but I think it is not available like face detection.

So given a image how can I determine from the set of contour which one is of hand?

2014-08-05 05:46:45 -0600 commented answer imread rotating image by 90 degree

I may be wrong but I think if you are using using image transferred from email or communicator and use the same image as input then this problem occurs.

2014-07-31 09:51:55 -0600 commented answer imread rotating image by 90 degree

sorry I am new in coding so not aware of this facts.I will try to improve. can u please try this image http://i.imgur.com/8rhAMbP.jpg

2014-07-31 09:16:32 -0600 commented answer imread rotating image by 90 degree

Sorry for wrong formatting..but I am doing nothing new..just read the image and show it..u will see that it is rotated.

//read the image

Mat input = cv::imread("image.jpg", CV_LOAD_IMAGE_COLOR);

//display

imshow("Input Image",input); waitkey(-1);

You will notice the image is inverted

2014-07-31 08:38:11 -0600 commented question imread rotating image by 90 degree

Program :

   Mat input = cv::imread("image.jpg", CV_LOAD_IMAGE_COLOR);

   //If image is larger than 1000*1000 pixels resize the image.


   Size size(700, 800);
Mat output;

if (input.rows > 1000 && input.cols > 1000)
{
    resize(input, output, size);
}
else
{
    output = input;
}

imshow("input image",output);

if u look at output image u will notice that it is rotated. Even if u skip the part of resizing and directly showing the image it will give u rotated image

2014-07-31 08:29:24 -0600 received badge  Organizer (source)
2014-07-31 08:28:15 -0600 commented question imread rotating image by 90 degree
2014-07-31 08:02:43 -0600 asked a question imread rotating image by 90 degree

I was trying to load the image..but after imread it is rotating the image by 90 degrees.

2014-07-31 02:05:40 -0600 commented question Image Alignement issue in Opencv

thinning algorithm is not working properly input :http://i.imgur.com/ui6wTiJ.jpg Output :http://i.imgur.com/BijtKNF.png

2014-07-28 06:02:35 -0600 commented question Image Alignement issue in Opencv

Yeah I used HoughLinesP.Maybe something wrong with the parameters?? cv::HoughLinesP(copiedImg, lines, 1, CV_PI / 180, 70, 30, 10);

2014-07-28 05:23:15 -0600 commented question Image Alignement issue in Opencv

Please see picture http://i.imgur.com/ptGGTrB.png Hough Line returns me 28 lines and really its very hard to judge the longest line i.e it can be vertical or horizontal.

2014-07-28 05:04:38 -0600 asked a question Image Alignement issue in Opencv

If I have two images

Image 1: Aligned properly http://i.imgur.com/ui6wTiJ.jpg Aligned properly

Image 2: Not aligned properly http://i.imgur.com/Z05ZfwR.jpg Not aligned properly

My algorithm compares two images but it needs both the images aligned properly. I was thinking of putting some unique marker at top-left corner but is there another way to align the images properly?