Ask Your Question

[email protected]'s profile - activity

2020-04-26 15:45:25 -0600 received badge  Notable Question (source)
2019-08-27 03:08:16 -0600 received badge  Popular Question (source)
2018-05-02 23:21:15 -0600 asked a question How to compare an image with another image and check whether similar or no?

How to compare an image with another image and check whether similar or no? i wont compare an image with another image.i

2018-05-01 13:45:20 -0600 asked a question How to compare 2 images using OpenCV c++

How to compare 2 images using OpenCV c++ I want to compare two images.

2018-04-13 07:20:11 -0600 received badge  Student (source)
2018-04-01 03:43:36 -0600 commented question How to compare a captured image with existing image in using openCV with C++?

Thank you for quick reply.I want to ckeck images similaritites not videos

2018-04-01 03:42:41 -0600 commented question How to compare a captured image with existing image in using openCV with C++?

Thank you for quick reply i want to ckeck images similaritites not videos

2018-04-01 03:20:57 -0600 asked a question How to compare a captured image with existing image in using openCV with C++?

How to compare a captured image with existing image in using openCV with C++? How to get a success value if the original

2018-03-31 08:43:02 -0600 asked a question My system detects the face and saves upto six images and I have stored pre-captured images as well. What I want is to compare these two and give the compared result

My system detects the face and saves upto six images and I have stored pre-captured images as well. What I want is to co

2018-03-31 03:23:32 -0600 asked a question The following cord snippet will capture and save images using opencv but saving process will not stop untill project is closed. How can I limit it for 6 images only?

The following cord snippet will capture and save images using opencv but saving process will not stop untill project is

2018-03-30 01:52:16 -0600 commented question c++ opencv error

i didn't change any of the code.yes it's a debug project.How I fix this error.

2018-03-30 00:45:56 -0600 asked a question c++ opencv error

c++ opencv error When this cord here run in visual studio 2015 an error happen as follow, program:C:\WINDOWS\SYSTEM3

2018-03-27 20:44:33 -0600 commented answer c++ opencv code Error

thank you for your advice

2018-03-26 12:40:40 -0600 asked a question c++ opencv code Error

c++ opencv code Error this code link This program demonstrates using the cv::CascadeClassifier class to detect objects

2018-03-03 04:11:56 -0600 asked a question how to merge camara open code and image capture code

how to merge camara open code and image capture code code 1 ------>camara open code is used to accesss the camera,i

2018-02-27 19:12:23 -0600 commented question How to detect and capture an image automatically when person is in front of the camera

thank you for your support

2018-02-27 10:33:04 -0600 commented question How to detect and capture an image automatically when person is in front of the camera

https://www.concretepage.com/forum/

2018-02-27 04:51:23 -0600 marked best answer How to detect and capture an image automatically when person is in front of the camera

I am learning about face recognition.I do this using opencv, c++ language,visual studio 2015. I want to do when a person come in front of the camera,it capture the face automatically and save in database.how I done it. How it done. Please help me.

this is the code that I use to open the camera

#include <opencv2/opencv.hpp>
#include <opencv2/imgcodecs.hpp>
#include "opencv2/objdetect.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/imgproc.hpp"
#include <stdio.h>
using namespace std;
using namespace cv;

int main(int, char**)
{
          Mat img;

    VideoCapture cam(0);

    namedWindow("camera");

    while (1) {
        cam >> img;
        imshow("camera", img);

        if (waitKey(1) == 27)
        {
            break;
        }

    }

    cam.release();
    return 0;
}
2018-02-27 00:51:35 -0600 commented question How to detect and capture an image automatically when person is in front of the camera

thank you for your advice and guidance

2018-02-26 23:08:05 -0600 asked a question How to detect and capture an image automatically when person is in front of the camera

How to detect and capture an image automatically when person is in front of the camera I am learning about face recognit

2018-02-26 22:33:17 -0600 commented question How to detect and capture an image automatically when person is in front of the camera?

this is the code that I use to open the camera.how I connect this to your code.I tried to do this but unable.. int main

2018-02-26 22:31:08 -0600 commented question How to detect and capture an image automatically when person is in front of the camera?

this is the code that I use to open the camera.how I connect this to your code.I tried to do this but unable.. int main

2018-02-26 22:30:46 -0600 commented question How to detect and capture an image automatically when person is in front of the camera?

this is the code that I use to open the camera.how I connect this to your code.I tried to do this but unable int main(i

2018-02-26 22:30:19 -0600 commented question How to detect and capture an image automatically when person is in front of the camera?

int main(int, char**){ Mat img; VideoCapture cam(0); namedWindow("camera"); while (1) { cam >> img; imshow("came

2018-02-26 22:29:11 -0600 commented question How to detect and capture an image automatically when person is in front of the camera?

int main(int, char**){ Mat img; VideoCapture cam(0); namedWindow("camera"); while (1) { cam >> img; imshow("came

2018-02-26 22:27:58 -0600 commented question How to detect and capture an image automatically when person is in front of the camera?

int main(int, char**) { Mat img; VideoCapture cam(0); namedWindow("camera"); while (1) { cam >> i

2018-02-26 22:23:25 -0600 commented question How to detect and capture an image automatically when person is in front of the camera?

int main(int, char**) { Mat img; VideoCapture cam(0); namedWindow("camera"); while (1) { cam >> i

2018-02-26 22:22:47 -0600 commented question How to detect and capture an image automatically when person is in front of the camera?

include <opencv2 opencv.hpp=""> include <opencv2 imgcodecs.hpp=""> include "opencv2/objdetect.hpp" includ

2018-02-26 22:21:02 -0600 commented question How to detect and capture an image automatically when person is in front of the camera?

Thank for helping me..

2018-02-26 22:18:59 -0600 commented question How to detect and capture an image automatically when person is in front of the camera?

Thank for helping me. include <opencv2 opencv.hpp=""> include <opencv2 imgcodecs.hpp=""> include "opencv

2018-02-24 04:30:41 -0600 asked a question How to detect and capture an image automatically when person is in front of the camera?

I am learning about face recognition.I do this using open cv, c++ language,visual studio 2015. I want to do when a perso

2018-02-22 11:00:12 -0600 received badge  Enthusiast