- Код: Выделить всё • Развернуть
#define _CRT_SECURE_NO_WARNINGS
#include <sstream>
#include <string>
#include <iostream>
#include <opencv\highgui.h>
#include <opencv\cv.h>
using namespace cv;
//default capture width and height
const int FRAME_WIDTH = 640;
const int FRAME_HEIGHT = 480;
const string windowName = "Original Image";
int main(int argc, char* argv[])
{
Mat cameraFeed;
int x=0, y=0;
VideoCapture capture;
capture.open("rtmp://video.bvf.ru/live/holzunova");
//set height and width of capture frame
capture.set(CV_CAP_PROP_FRAME_WIDTH,FRAME_WIDTH);
capture.set(CV_CAP_PROP_FRAME_HEIGHT,FRAME_HEIGHT);
while(1){
imshow(windowName,cameraFeed);
waitKey(30);
}
return 0;
}
однако по какой-то причине после запуска выбрасывает ошибку:
- Код: Выделить всё • Развернуть
cv::Exception at memory location
Подскажите как можно решить данную проблему...
PS я в opencv новичек.