In the Learning OpenCV
book:
.
.
CvCapture *capture = cvCreateFileCapture(argv[1]);
IplImage* frame;
while(1)
{
frame = cvQueryFrame(capture);
.
.
}
在这方面,我们可以看到,<代码>* 范围代码>是一个要点。 但是,当我们写以下<代码> = cvQueryFrame(capture);时,我们没有向点人分配地址。 在此情况下,<代码>> 范围编码>究竟是什么?
感谢。