Ask Your Question

Dp's profile - activity

2015-03-30 04:11:54 -0600 received badge  Enthusiast
2015-03-29 08:06:50 -0600 asked a question How to connect weka with Mysql database.

I am trying to connect Weka with Mysql database but its showing "jdbc driver not found" and i had already installed MYSQL driver, then also its showing the same error.

2015-03-25 07:37:05 -0600 received badge  Supporter (source)
2015-03-25 07:10:33 -0600 commented question Detection of Lungs cancer through image processing

well thanks, i will post all snapshots of the output to get all people suggestions,of improving more, and will put the code on Github.

2015-03-25 06:34:57 -0600 asked a question Detection of Lungs cancer through image processing

I am working on project to detect lungs cancer i had included algorithms for feature extraction like binarization,contours,contourArea,threshold,SIFT(to make more efficient ),Region Growing,Region of Interest(ROI),watershed . Which algorithms should i add more to make 97-98% efficiency of detection ? I want to detect cancer in its very 1 stage.

PS:-I am also using Data mining concepts like Decision tree to get probable data(other way to make more efficient project).

2015-03-25 04:55:35 -0600 commented answer how to add open cv blobs library in Visual studio 2013.

thanks matman its working, thanks people you all helped me alot!

2015-03-23 11:32:08 -0600 commented question how to add open cv blobs library in Visual studio 2013.

@theodore i am using open cv 2.4.10 with visual studio 2013 is there any problem with that?

2015-03-23 11:21:32 -0600 commented question how to add open cv blobs library in Visual studio 2013.

now its showing "identifier point is undefined",same showing for contourArea,now what do to @theodore?

2015-03-23 10:51:00 -0600 commented question how to add open cv blobs library in Visual studio 2013.

@theodore thanks for helping i had set path all are working fine except contourArea()?

2015-03-23 09:31:32 -0600 commented question how to add open cv blobs library in Visual studio 2013.

Its still showing contourArea(),"identifier not found" what you said i had included? There is some packages problems or libraries is missing ? I am using open cv 2.4.10 with visual studio 2013.

2015-03-23 09:24:53 -0600 commented question how to add open cv blobs library in Visual studio 2013.

That i had done,its some other issues please check?

2015-03-23 09:12:21 -0600 commented question how to add open cv blobs library in Visual studio 2013.

hey,Berak thanks for the reply i added the code above please check what exactly the problem is.

2015-03-23 09:06:36 -0600 received badge  Editor (source)
2015-03-23 08:51:17 -0600 commented question how to add open cv blobs library in Visual studio 2013.

i had already included that header file still its showing "contourArea() is undefined" Is function contourArea() declaration is wrong? if yes, how we need to declare that?

2015-03-23 08:20:06 -0600 asked a question how to add open cv blobs library in Visual studio 2013.

I am not able to add open cv blobs library with visual studio 2013, i need to calculate contourArea which needs blobs library ,how can i add those libraries. EDIT:-I had used all the instructions given below my contourArea() is still showing undefined,please help?

    #include <opencv2/opencv.hpp>

    #include<stdio.h>
    #include<iostream>

    using namespace std;
    using namespace cv;

   int main()
    {
        // open the image   
        cv::Mat &image= cv::imread("cancer.jpg");
        vector<vector<Point> > contours;
        cv::Canny(image, // gray-level image
            contours, // output contours
            125, // low threshold
            350);

        for(unsigned int i=0;i<contours.size(),i++)
    {
         cout << "# of contour points: " << contours[i].size() << endl ;

         for(unsigned int j=0;j<contours[i].size(),j++)
         {
             cout << "Point(x,y)=" << contours[i][j] << endl;
         }

         cout << " Area: " << contourArea(contours[i]) << endl;//its contourArea() is undefined
    }

        cvWaitKey(0);
    }
2015-03-22 01:43:28 -0600 asked a question how to add open cv lib in visual studio 2013.

Hello, How can i put blobs lib in visual studio 2013,i am not able to run codes having blobs with open cv and visual studio 2013,Please Help??

2015-03-21 04:38:36 -0600 asked a question contourArea is undefined error in Visual Studio

I am getting an error:-"contourArea is undefined" when i am using contourArea() to calculate the area of a particular object in my input image.I am using OpenCv with Visual Studio.How to remove this error?