Ask Your Question

danielistyo's profile - activity

2020-10-28 17:04:31 -0600 received badge  Favorite Question (source)
2018-07-26 14:41:04 -0600 received badge  Famous Question (source)
2017-12-09 06:32:26 -0600 received badge  Famous Question (source)
2017-05-28 01:02:56 -0600 received badge  Notable Question (source)
2016-12-05 14:02:52 -0600 received badge  Popular Question (source)
2016-10-27 07:58:48 -0600 received badge  Notable Question (source)
2016-02-24 10:30:02 -0600 received badge  Popular Question (source)
2015-03-23 00:30:27 -0600 received badge  Enthusiast
2015-03-22 15:23:41 -0600 asked a question measure similarity between two image

I would like to measure similarity between training data image and my testing data image. I don't want an exact match comparison, because the aspect could be slightly different or many different (some element could be at a slightly different location). And the result is similarity level. is there any function in OpenCV to solve it ?

I think my question like text recognition when it find comparison between all of letter from database.

2015-03-12 07:58:55 -0600 received badge  Scholar (source)
2015-03-10 09:56:24 -0600 commented answer How to remove line on music sheet

thank you @theodore. you're very helpfully

2015-03-10 09:15:11 -0600 commented answer How to remove line on music sheet

@theodore

C++ : adaptiveThreshold(~gray, bw, 255, CV_ADAPTIVE_THRESH_MEAN_C, THRESH_BINARY, 15, -2);

JAVA : Imgproc.adaptiveThreshold(destination, binaryMat, 255,Imgproc.ADAPTIVE_THRESH_MEAN_C, Imgproc.THRESH_BINARY, 15, -2);

why the result is different ? https://www.dropbox.com/s/22pp6e5j1t2...

2015-03-10 08:52:20 -0600 commented answer How to remove line on music sheet

C++ : adaptiveThreshold(~gray, bw, 255, CV_ADAPTIVE_THRESH_MEAN_C, THRESH_BINARY, 15, -2);

JAVA : Imgproc.adaptiveThreshold(destination, binaryMat, 255,Imgproc.ADAPTIVE_THRESH_MEAN_C, Imgproc.THRESH_BINARY, 15, -2);

why the result is different ? https://www.dropbox.com/s/22pp6e5j1t2...

2015-02-19 22:03:42 -0600 commented answer How to remove line on music sheet

@theodore.. okay, I will try.

2015-02-19 12:51:12 -0600 commented answer How to remove line on music sheet

waww nice @theodore.. Can your algorithm applied in java ?

2015-02-07 00:06:05 -0600 received badge  Student (source)
2015-01-21 12:46:45 -0600 commented answer How to remove line on music sheet

@essamzaky I found that image in google not using software

2015-01-21 12:44:28 -0600 commented answer How to remove line on music sheet

Wait, I want to learn that code. I don't familiar with c++. But, thanks

2015-01-19 09:23:24 -0600 commented answer How to remove line on music sheet

no, it's not working. because every pic has different pixel. I've tried it

2015-01-19 09:22:03 -0600 commented answer How to remove line on music sheet

wait.. I am learning your code. I am newbie. I can not do fast.

2015-01-18 09:47:09 -0600 commented question How to remove line on music sheet

I've added 2 images. Do you know the algorithm to solve it ? @StevenPuttemans

2015-01-18 09:45:25 -0600 received badge  Editor (source)
2015-01-18 09:20:14 -0600 asked a question How to remove line on music sheet

I want to try to remove line/horizontal line on music sheet. Because it help me to recognize the notes. Can someone tell me step by step to remove line/horizontal line on music sheet?

before image description

after image description

2014-12-06 01:42:36 -0600 asked a question How to resize resolution CameraBridgeViewBase

I want to resize resolution camera to be 100x400. I have tried using mOpenCvCameraView.setMaxFrameSize(500, 100);

but it's not working. can someone help me