Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

adding several images

is there any way to add several images two each other using opencv?

thanks in advance...

adding several images

is there any way to add several images two each other using opencv?

thanks in advance...

after editing:

 int N;
     cin >> N;
     for(int i=0; i<sen; i++){
        Nframes.push_back(pClose);
        if(Nframes.size() == N){
            for(int i=N; i>0; i--){
               Nframes.pop_front();

             //  addWeighted(src1, alpha, src2, beta, gamma, dst, -1);

           }
        }
     }

adding several images

is there any way to add several images two each other using opencv?

thanks in advance...

after editing:

 int N;
     cin >> N;
     for(int i=0; i<sen; i++){
        Nframes.push_back(pClose);
Nframes.push_back(pClose); //pclose is a float pointer which points to the current frame
        if(Nframes.size() == N){
            for(int i=N; i>0; i--){
               Nframes.pop_front();

             //  addWeighted(src1, alpha, src2, beta, gamma, dst, -1);

           }
        }
     }