Ask Your Question

muc's profile - activity

2020-10-04 07:12:24 -0600 received badge  Nice Question (source)
2019-09-24 03:29:30 -0600 received badge  Notable Question (source)
2017-10-22 07:54:19 -0600 received badge  Popular Question (source)
2017-01-26 12:38:50 -0600 asked a question send command with http

Hi, how can send a http command to ip camera ? i am going to send a command to camera after appear an event whit this command the camera go to preset. "http://160.10.52.100/rcp.xml?command=0x09A5&type=P_OCTET&direction=W RITE&num=1&payload=0x80000201B0800704XX".

before i capture video with this "VideoCapture capture("rtsp://username:[email protected]/?h26x=0");" i use visual studio c++.

thanks.

2017-01-23 09:11:54 -0600 commented answer sift and surf in opencv 3.2

thanks a lot .. every thing is ok, i saw other error Of course, I did not need to these modules: 1_LINK : fatal error LNK1104: cannot open file '....\lib\Debug\opencv_dnn320d.lib'

2_LINK : fatal error LNK1104: cannot open file '....\lib\Debug\opencv_ximgproc320d.lib'

3_LINK : fatal error LNK1104: cannot open file '....\lib\Debug\opencv_tracking320d.lib'

4_>......\modules\ximgproc\src\fast_line_detector.cpp(185): error C3861: 'round': identifier not found

thanks

2017-01-23 07:52:06 -0600 commented answer sift and surf in opencv 3.2

i rerun cmake and saw when build , this error appear "modules\xfeatures2d\src\boostdesc.cpp(244): error C3861: 'round': identifier not found" how solved it

2017-01-23 07:07:47 -0600 commented question sift and surf in opencv 3.2

in debug mode.

2017-01-23 06:59:48 -0600 commented answer sift and surf in opencv 3.2

ok i do not have opencv_xfeatures2d320.lib in build . which module in opencv_contrib is for "xfeatures2d.lib"

2017-01-23 06:38:10 -0600 commented question sift and surf in opencv 3.2

if i only remove SURF process from my code , the compiler does not take error. then version of visual studio is ok. for example i detect background too .

2017-01-23 06:12:19 -0600 commented answer sift and surf in opencv 3.2

i used this command but the compiler take error.

2017-01-23 06:11:02 -0600 commented question sift and surf in opencv 3.2

Hi, the error is: error LNK2019: unresolved external symbol "public: static struct cv::Ptr<class cv::xfeatures2d::surf=""> __cdecl cv::xfeatures2d::SURF::create(double,int,int,bool,bool)" (?create@SURF@xfeatures2d@cv@@SA?AU?$Ptr@VSURF@xfeatures2d@cv@@@3@NHH_N0@Z) referenced in function "void __cdecl campring(class cv::Mat const &,class cv::Mat const &)" (?campring@@YAXABVMat@cv@@0@Z)

2017-01-23 05:04:18 -0600 asked a question sift and surf in opencv 3.2

Hi, i build opencv 3.2 with opencv-contrib moduls also add [ #include "opencv2/xfeatures2d.hpp"] and [using namespace cv::xfeatures2d;] to my code but i have error when compile it. i used these commands for surf:

    Ptr<SURF> detector; 
detector->create();
     detector->detect( imgbackground, Keypoints1 );

please guide me. thanks,

2016-01-25 03:48:45 -0600 asked a question use c++ on android without java and jni

Hello,

does it possible to use c++ on Android (ONLY C++ AND ANDROID COMPONNET + OPENCV)?

(LIKE VISUAL STUDIO AND VC++ and opencv)

we do not want to use the java or JNI .

Thanks.

2015-12-10 07:27:15 -0600 asked a question how can merge the video data to a matrix?

Hi, I am working with a video sender. That can communicate with it by the SDK(Software Development Kit). Every time a frame is ready then run an internal event below (the name is video-available) ,that we can do our processing in this event.

EVENT IS :
             video-available:
                                    {
                                       ENCODE-VIDEO_EVENT*   videoEventa;
                                     videoEvent = (ENCODE-VIDEO_EVENT*)     pData;

                                    server->process_jpeg_image(videoEventa->buff, videoEventa->size);

                                     break;
                                      }

we know frame will be send with ENCODE-VIDEO_EVENT* pointer.and the data structure is:

typedef struct { char* buff; int size; }

how can merge the video data to matrix? Many Thanks.

2015-12-10 07:20:41 -0600 asked a question how can merge the video data to a matrix?

Hi, I am working with a video sender. That can communicate with it by the SDK(Software Development Kit). Every time a frame is ready then run an internal event below (the name is video-available) ,that we can do our processing in this event. EVENT IS : video-available: { ENCODE-VIDEO_EVENT* videoEventa; videoEvent = (ENCODE-VIDEO_EVENT*) pData;

                                    server->process_jpeg_image(videoEventa->buff, videoEventa->size);

                                     break;
                                      }

we know frame will be send with ENCODE-VIDEO_EVENT* pointer.and the data structure is typedef struct { char* buff;

int                     size;

}

how can merge the video data to matrix? Many Thanks.

2015-09-25 05:59:38 -0600 commented question cars fading in traffic jam

Yes, I can, but the background will change with time.

2015-09-23 13:22:27 -0600 received badge  Student (source)
2015-09-23 13:09:19 -0600 asked a question cars fading in traffic jam

Hi, i want to calculate traffic jam. To do this I got the contours of the foreground.. But I have a big problem. If the traffic for a long time.And the cars do not move for several minutes.

As a result, the cars will be part of the background(the cars fade).

How can I solve this problem. Many Thanks.

2015-09-22 08:46:04 -0600 asked a question blob draw and number of pixels

Hi,

i detected the blobs with the SimpleBlobDetector class . how can i draw these blobs or extract to matrix?

How do I calculate the number of pixels inside the blob? and How can I determine its coordinates on the main image? Many Thanks.

2015-09-20 06:38:50 -0600 commented question how send rtsp message

Hi, berak i received the video stream . BUT i want to send a command via rtsp://............. i do not know this

2015-09-20 05:37:39 -0600 asked a question how send rtsp message

Hi, i capture the video from the camera [VideoCapture capture=("rtsp://192.10.10.10/?h26x=0")] this is receive command.

how can i send a command with rtsp protocol to the camera ? for example ["rtsp: //192.10.10.10/?pre=0"] Many thanks.

2015-08-30 11:31:47 -0600 received badge  Editor (source)
2015-08-30 11:31:06 -0600 asked a question train cascade larg offset

Hi,

i create the .xml file with train cascade algorithm. with command ""detectMultiScale"" , i find the object but this object has large offset . how can i reduce the offset in the around object?

image description

before training ,i selected ,,fit to object.

Many Thanks,

2015-08-29 03:59:44 -0600 asked a question speed vehicle

Hi, What is the best algorithm to determine the speed of the vehicle? 10 to 200 km/h. My camera support 60 frame per second.

Many Thanks

2015-08-29 02:07:23 -0600 asked a question color or grayscale for cascade training

Hi, 1-can i train cascde algorithm with image color?Objects are the same, just a different color. 2- if i create the .xml file by MATLAB for cascade training . can i use the .xml file in opencv ?.is it compatible? Many Thanks.

2015-08-27 06:20:19 -0600 asked a question Measuring vehicle speed

Hi, What is the best algorithm to determine the speed of the car? Top 200 km. My camera support 60 frame per second. Many Thanks.

2015-06-22 00:28:32 -0600 commented question Which algorithm can detect the face While Robustness against to face rotation

Very helpful.Thanks

2015-06-19 05:39:48 -0600 asked a question Which algorithm can detect the face While Robustness against to face rotation

haarcascade_frontalface_alt.xml and haarcascade_frontalface_default.xml and .. are not robust to rotate More than 10 degrees.

also which algorithm can back face to normal angle for face recognize process?

2015-06-09 01:45:04 -0600 received badge  Enthusiast
2015-06-04 11:40:39 -0600 commented question how can face recognize with one sample per object

we have only 1 examples of each face. may create multiple copies of a photo Which are different in terms of brightness and angle,(3D Morphabe) , for use fisherface algorithm.

2015-06-04 10:06:36 -0600 asked a question how can face recognize with one sample per object

to implement fisher and eigenface algoritm need to have more than 2 sample for one image in database. Which algorithm is suitable for a sample؟

2015-05-26 11:51:13 -0600 commented question .dll files missing for version 3.0 sr1

have lib files and bin folder. .So once must be build.

2015-05-26 11:05:08 -0600 asked a question .dll files missing for version 3.0 sr1

may be create dll files in bin folder for windows (opencv 3.0 rc1)