Ask Your Question

biza's profile - activity

2019-06-24 10:25:48 -0600 commented answer How can correct a problem color

Hello my friend thank's for answering. yes I now to perform this i have to use luminosity invariant color space (HSV), a

2019-06-23 16:21:39 -0600 commented question How can correct a problem color

ok i will try to share some pictures. I have defined a superior and inferior limit . I need implement a ROI between the

2019-06-23 09:27:31 -0600 edited question How can correct a problem color

How can correct a problem color Hello fellows, I made a program who was responsible for detect the orange ball position

2019-06-23 09:26:52 -0600 edited question How can correct a problem color

How can correct a problem color Hello fellows, I made a program who was responsible for detect the orange ball position

2019-06-23 09:23:57 -0600 asked a question How can correct a problem color

How can correct a problem color Hello fellows, I made a program who was responsible for detect the orange ball position

2019-05-29 16:53:21 -0600 edited question How can define a region of interest in empty parking spaces?

How can define a region of interest in empty parking spaces? Hello I have a small problem with my code. I have made the

2019-05-27 06:50:50 -0600 edited question How can define a region of interest in empty parking spaces?

How can define a region of interest in empty parking spaces? Hello I have a small problem with my code. I have made the

2019-05-27 06:50:43 -0600 edited question How can define a region of interest in empty parking spaces?

How can define the follwing ROI? Hello I have a small problem with my code. I have made the full code to identify a regi

2019-05-27 06:42:47 -0600 edited question How can define a region of interest in empty parking spaces?

How can define the follwing ROI? Hello I have a small problem with my code. I have made the full code to identify a regi

2019-05-26 14:26:27 -0600 asked a question How can define a region of interest in empty parking spaces?

How can define the follwing ROI? Hello I have a small problem with my code. I have made the full code to identify a regi

2019-05-10 08:16:19 -0600 asked a question how to send data by serial communication?

how to send data by serial communication? I have a mac and, I have install de openCv on Xcode, but I am facing some pro

2018-06-09 10:47:03 -0600 edited question Arduino + opencv project tracker ball

Arduino + opencv project tracker ball hello friends, I am carrying out a project that is based on tracking a ball inside

2018-06-09 10:44:40 -0600 commented question Arduino + opencv project tracker ball

Yes I know the image is grayscale. The problem is that if I put the code as follows "cvtColor( frame, HSV_IMAGE, CV_RGB2

2018-06-06 14:21:30 -0600 commented question Arduino + opencv project tracker ball

I change it

2018-06-06 14:21:14 -0600 edited question Arduino + opencv project tracker ball

Arduino + opencv project tracker ball hello friends, I am carrying out a project that is based on tracking a ball inside

2018-06-06 10:31:36 -0600 commented question Arduino + opencv project tracker ball

thank you for your advices, but i am a beginner, and I have basic knowledge in opencv, if you can help me solve this pro

2018-06-06 09:00:47 -0600 edited question Arduino + opencv project tracker ball

Arduino + opencv project tracker ball hello friends, I am carrying out a project that is based on tracking a ball inside

2018-06-06 08:29:16 -0600 edited question Arduino + opencv project tracker ball

Arduino + opencv project tracker ball hello friends, I am carrying out a project that is based on tracking a ball inside

2018-06-06 08:16:32 -0600 edited question Arduino + opencv project tracker ball

Arduino + opencv project tracker ball hello friends, I am carrying out a project that is based on tracking a ball inside

2018-06-06 04:17:40 -0600 edited question Arduino + opencv project tracker ball

Arduino + opencv project tracker ball hello friends, I am carrying out a project that is based on tracking a ball inside

2018-06-06 04:16:44 -0600 asked a question Arduino + opencv project tracker ball

Arduino + opencv project tracker ball hello friends, I am carrying out a project that is based on tracking a ball inside

2018-06-06 03:15:48 -0600 received badge  Enthusiast
2018-06-03 16:22:57 -0600 edited question how can merge two lines to create a ROI

how can merge two lines to create a ROI I already solve part of the problem, but i need to close the lines vertically, h

2018-06-03 16:22:52 -0600 edited question how can merge two lines to create a ROI

how can merge two lines to form a ROI I already solve part of the problem, but i need to close the lines vertically, how

2018-06-03 16:17:46 -0600 asked a question how can merge two lines to create a ROI

how can merge two lines to form a ROI I already solve part of the problem, but i need to close the lines vertically, how

2018-06-02 16:04:55 -0600 edited question print lines on the original image

print lines on the original image Hello fellows , So I have a static video with two green strips and i need extract the

2018-06-02 16:04:53 -0600 edited question print lines on the original image

Trace lines on the original image Hello fellows , So I have a static video with two green strips and i need extract the

2018-06-02 14:41:01 -0600 commented answer How can I draw a mark over the video?

Solved, tank you for your help

2018-06-02 14:40:17 -0600 asked a question print lines on the original image

Trace lines on the original image Hello fellows , So I have a static video with two green strips and i need extract the

2018-06-01 09:23:12 -0600 asked a question How can I draw a mark over the video?

How can I draw a mark over the video? I have made the following code , and when the user click the left side of mouse he

2014-07-14 14:40:07 -0600 received badge  Editor (source)
2014-07-14 13:21:54 -0600 asked a question how can I load videoCapture inside windows for in a picture box

I have build a form that will serve as an interface, but now I am experiencing some problems getting cameraCapture load inside a pictureBox, I have done this code:

VideoCapture capture(0);


             if (!capture.isOpened()) {
                 information->Text = "no signal!";
                 exit(0);

             }
             else {
                 timer1->Start();
                 information->Text = " Signal!";



                 Mat frame, gray, gray_old, dif;

                capture>>frame;
                cvtColor(frame, gray_old, CV_BGR2GRAY);
                GaussianBlur(gray_old, gray_old, cv::Size(11, 11), 1.5, 1.5);
             frame = cvQueryFrame(capture);
              cvCopy(frame,frame); //it's important if u make the image in 3 channel or filtering
             pictureBox1->Image  = gcnew    //replacement of cvShowImage
             System::Drawing::Bitmap(frame->width,frame->height,frame->widthStep,
             System::Drawing::Imaging::PixelFormat::Format24bppRgb,(System::IntPtr) frame->imageData);
             pictureBox1->Refresh();

How can I show the cameraCapture? All syntax "frame" is underlined in red after Gaussian function... The error: error C2819: type 'cv::Mat' does not have an overloaded member 'operator ->'

Can you help me please

2014-07-12 14:51:37 -0600 asked a question how can convert win32 console to windows form c++

hello friends, I have a problem, I made a program in win32 console, now wanted to convert to windows form. I don't have any idea how to do, I have done the form and is working, now I need convert the code. any help is welcome