Ask Your Question

waqasp's profile - activity

2020-09-03 04:33:52 -0600 received badge  Taxonomist
2019-08-16 11:09:21 -0600 received badge  Notable Question (source)
2017-11-23 01:53:03 -0600 received badge  Popular Question (source)
2017-08-22 17:56:20 -0600 received badge  Student (source)
2014-03-19 05:01:40 -0600 received badge  Critic (source)
2014-03-19 00:38:26 -0600 commented answer Fingerprint matching using scannar ?

i got two images.. offline mode -> http://postimg.org/image/jbqk07wyr/ online mode-> http://postimg.org/image/i3yul17xt/ i want to match the image that i get from live scan with the inked images i got in my database. It will be very helpful if you guide me to the direction i should head, thanks

2014-03-18 23:43:05 -0600 asked a question Fingerprint matching using scannar ?

Hello there, I have got two fingerprint images of a same person. One is inked image and the other image is through digital persona finger print scanner. Is it possible to match and recognize these two fingerprint images ?

2014-01-23 00:52:11 -0600 asked a question How to detect Fingerprint from an image ?

Hello everyone,

Suppose i got an image of a hand written form on which a fingerprint is imprinted. It can be anywhere on the form. How a program can detect the fingerprint and extract that region on interest ?

i can extract the ROI, but i am not sure how to detect that region.. Please guide me how can this b achieved..

Thanks

2013-06-18 04:59:17 -0600 answered a question Resizing Image

you can resize your image by using this code,

double ra=1.0; int newWidth; int newHeight; int main() { Mat size= imread("your filename"; double ff=700; // this will change the image resolution to 700X700 if (size.cols > size.rows) { ra = ff / size.cols; } else { ra = ff / size.rows; } newWidth = (int)(size.cols * ra); newHeight = (int)(size.rows * ra); cv::resize(size,size,cv::Size(newWidth,newHeight)); imshow(size);
}

2013-06-11 05:45:53 -0600 commented answer GrabCut Sample code in Opencv

Thanks alot my friend... really appreciate your support:)

2013-06-10 04:40:54 -0600 commented question GrabCut Sample code in Opencv

anyone ??/

2013-06-09 23:09:10 -0600 asked a question GrabCut Sample code in Opencv

C:\fakepath\neckless.jpg

Hello all, I am using grabcut sample code from opencv as a part of my project... the final image which i am getting after using that sample code contain black background... according to me, it is because of the mask....?? i have tried everything to change the background to white or transparent...

what modification should i make to the sample code to get final image with white or transparent background...

thanks,

2013-06-06 02:06:57 -0600 commented answer smooth edges

do u know any sample code to perform this ?

2013-06-06 01:59:55 -0600 received badge  Supporter (source)
2013-06-06 01:59:31 -0600 received badge  Scholar (source)
2013-06-06 01:51:00 -0600 commented answer smooth edges

thanks i m trying to do so.... actually this is the first time i am using opencv ever in my life... so still in learning process... and my deadline to do the whole project is after 2 days.... and this edge refining/ smoothing is the last part where i m stuck

2013-06-06 01:29:21 -0600 commented answer smooth edges

but this will convert my image to grayscale.... i need it to b in RGB

2013-06-05 22:42:34 -0600 asked a question smooth edges

hello all,

is there any way to smooth or refine irregular edges in an image...for example the edges in the image below : C:\fakepath\wiqi.jpg

Thanks,

2013-06-03 03:57:05 -0600 commented answer Grabcut sample

Thanks for the reply....i have updated my question...

2013-06-03 03:55:47 -0600 received badge  Editor (source)
2013-06-03 02:52:09 -0600 asked a question Grabcut sample

Hello all, i am working on a project, for which i am using grabcut sample code. it is working perfectly... But my question is, how can i save the final image after the required iterations... so that i can use that image for my further processing.... Waiting for replies...

Thanks

update: C:\fakepath\result.jpg after saving the final result...rectangle is still visible...how to get rid of that ??