gpt4 book ai didi

c++ - 使用 VideoCapture 类创建一个类

转载 作者:行者123 更新时间:2023-12-02 16:38:36 28 4
gpt4 key购买 nike

定义类很新,我遇到了在自制类中定义 VideoCapture 对象的问题。请参阅下面的代码。
我尝试创建一个包含有关视频文件的所有信息的类。所以我初始化了 videoCapture 对象。哪个工作正常,但是在“构造函数”(fName::setAviName)完成它的工作并且我调用类的另一个函数(fAvi.GetNumFrames())之后,VideoCapture 对象变成了一个 NULL 指针。
显然,当我的“构造函数”完成时,VideoCapture 对象被销毁。该类的其他私有(private)变量工作正常。

试图用“共享指针”解决问题,但没有成功。

问题清楚了吗?这可能是我想做的吗?如何?还是我不应该打扰?

非常感谢,

DS

#include "opencv2/opencv.hpp"
using namespace cv;
using namespace std;

class fName
{
std::string d_AvifName; // name of the Avi file
std::shared_ptr<VideoCapture> d_capture;

public:
int setAviName(string const &fName); //sets name in class
int const GetNumFrames() const;
};


// functions: --------------------------------------------------

int fName::setAviName(std::string const &fName)
{ //sets AVI name in class and opens video stream

VideoCapture d_capture(fName);

if(!d_capture.isOpened()){ // check if succeeded
d_AvifName = "No AVI selected";
return (-1);
}
else{
d_AvifName = fName;
return(1);
}

}

int const fName::GetNumFrames() const
{
cout << d_capture->get(CV_CAP_PROP_FRAME_COUNT) << endl;
return d_capture->get(CV_CAP_PROP_FRAME_COUNT);
};


int main(int argc, char *argv[])

{

fName fAvi;

int IsOK = fAvi.setAviName("/Users/jvandereb/Movies/DATA/Verspringen/test_acA1300-30gc-cam5_000035.avi");
if (IsOK)
cout << fAvi.GetNumFrames() << endl;

}

最佳答案

您的功能fName::setAviName创建一个同名的新局部变量 d_capture ,因此全局d_capture未设置。

而不是使用 shared pointer你可以只创建一个非指针实例:

class fName
{
std::string d_AvifName; // name of the Avi file
VideoCapture d_capture;

public:
fName(std::string const &fName);
int setAviName(std::string const &fName); //sets name in class
int const GetNumFrames() const;
};

我还建议创建一个真正的构造函数:
fName::fName(std::string const &fName) 
{
if (!setAviName(fName)) {
//throw some exception for example
}
}

然后你需要改变 setAviName在哪里可以使用 open :
int fName::setAviName(std::string const &fName)
{ //sets AVI name in class and opens video stream
if(!d_capture.open(fName)){ // open and check if succeeded
d_AvifName = "No AVI selected";
return (-1);
}
else{
d_AvifName = fName;
return(1);
}
}

您还需要更改 GetNumFrames自从 d_capture不再是指针:
int const fName::GetNumFrames() const
{
cout << d_capture.get(CV_CAP_PROP_FRAME_COUNT) << endl;
return d_capture.get(CV_CAP_PROP_FRAME_COUNT);
};

关于c++ - 使用 VideoCapture 类创建一个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33277923/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com