CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: ipunished

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    7,164

    Re: OpenCV and problems with matrices

    just wanted to update here for people having similar problems.. I fixed it with the following code:


    CvMat *M1;
    //cv::Mat M1(2,row->width,CV_32FC1);
    M1 = cvCreateMat(5,row->width,CV_32FC1 );...
  2. Replies
    4
    Views
    7,164

    Re: OpenCV and problems with matrices

    Update:

    The strange runtime error is no more.. The problem was here:
    I changed to M1.row(0) and M1.row(1), before it was giving error because I was telling the compiler that M1 has a third row as...
  3. Replies
    4
    Views
    7,164

    Re: OpenCV and problems with matrices

    suppose I have 2 matrices A and B..

    A = [1,2,3,4,5]

    B = [6,7,8,9,10]

    I want to to combine them like so:

    C = [1,2,3,4,5
    6,7,8,9,10]
  4. Replies
    4
    Views
    7,164

    OpenCV and problems with matrices

    Hello,

    Ive been working on learning opencv by example and have learned lots but have some confusions/confusion in some parts, and would appreciate if you guys could help me out..

    First off I...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured