Ask Your Question

valium123's profile - activity

2016-11-28 10:58:19 -0600 received badge  Student (source)
2016-11-17 11:24:06 -0600 commented question Need help with grabcut results and canny edge detection?

@LBerger thanks for that link

2016-11-17 08:09:31 -0600 commented question Need help with grabcut results and canny edge detection?

What I meant was detecting moles etc on skin.

2016-11-17 05:50:52 -0600 commented question Need help with grabcut results and canny edge detection?

Your previous comment did the trick! thanks a lot. I wasn't inverting the image. Anyways what steps would you recommend for segmenting skin lesions?

2016-11-17 05:30:14 -0600 received badge  Enthusiast
2016-11-16 16:29:59 -0600 asked a question Need help with grabcut results and canny edge detection?

I am trying to segment an image containing a mole using grabcut algorithm with 8 iterations. The result I get is this. I understand that the white space is causing problems.

Grabcut result

The rectangle affects later stages of the image processing by detecting false contours. It should be detecting contours on the mole boundary not the rectangle.

Canny edge detection result

How can I solve this problem? Please help.

2016-09-10 06:35:24 -0600 received badge  Editor (source)
2016-09-10 06:27:51 -0600 asked a question How to build opencv with specific modules?

Hi, my project involves image processing and ml in python. I have to zip everything up into a bundle and upload it on aws lambda. When I zip the libraries this:

zip -9 bundle.zip hello.py 
cd $VIRTUAL_ENV/lib/python2.7/dist-packages
zip -r9 ~/bundle.zip *
cd $VIRTUAL_ENV/lib64/python2.7/dist-packages/
zip -r9 ~/bundle.zip *
cd
aws s3 cp bundle.zip s3://<INSERT_BUCKET_NAME>/bundle.zip

everything gets zipped even the samples and the various jpgs that come with opencv. Is there a way to only keep the required stuff so that the project file is not bloated?

Also this problem is only with the opencv installed from git.

2016-09-10 06:20:49 -0600 commented question Exclude modules while building OpenCV

I want to do the same. What should i do?

2016-09-02 16:26:24 -0600 answered a question load the existing svm with python

I just downloaded and installed the latest opencv-master repo. But I still can't find that function

2016-09-02 16:23:16 -0600 asked a question SVM load function opencv 3.1.0 python

Hi, I want to load a previously stored svm model but there is no load function in opencv 3.1.0. I saw this http://stackoverflow.com/questions/38... and downloaded/installed opencv again but I still can't use that function. I don't know where to find the 3.1.0-dev version the guy is talking about. Please help. I have to use that function. It's urgent.

2016-07-30 09:42:18 -0600 received badge  Scholar (source)
2016-07-28 08:10:07 -0600 asked a question PLEASE HELP with opencv portable build

Let's say there is a target machine that is running 64 bit Linux. I have to build an opencv java project which will eventually turn into a jar file and that should run on the target machine even if it does not have opencv installed. Please help me with this. It's kind of urgent.

2016-07-27 18:22:52 -0600 received badge  Supporter (source)
2016-07-27 18:22:46 -0600 commented question Making a portable library using OpenCV (Linux/Windows/iOS/Android)

Has this project been completed?

2016-07-27 16:45:21 -0600 commented question Embed opencv in java project

Thanks. But this this page says "Lambda functions can include libraries, even native ones", so I'm guessing opencv can be used with it.

2016-07-25 11:01:28 -0600 asked a question Embed opencv in java project

Hi, Is there a way to kind of embed opencv in a java project so that it can run on a remote computer? I'm working on a project that involves writing image processing code in an AWS Lambda function and it is giving an unsatisfied link error. Please help. I'm using eclipse IDE for Java by the way and created the AWS Lambda Project using the AWS toolkit.