Commit d80fd0c8 authored by ArkadiuszRaj's avatar ArkadiuszRaj

Missing declaration

parent 70c12e54
...@@ -271,13 +271,13 @@ CV_IMPL CvCapture * cvCreateCameraCapture (int index) ...@@ -271,13 +271,13 @@ CV_IMPL CvCapture * cvCreateCameraCapture (int index)
TRY_OPEN(capture, cvCreateCameraCapture_Giganetix(index)) TRY_OPEN(capture, cvCreateCameraCapture_Giganetix(index))
if (pref) break; // CV_CAP_GIGANETIX if (pref) break; // CV_CAP_GIGANETIX
#endif #endif
}
#ifdef HAVE_ARAVIS_API #ifdef HAVE_ARAVIS_API
case CV_CAP_ARAVIS: case CV_CAP_ARAVIS:
TRY_OPEN(capture, cvCreateCameraCapture_Aravis(index)) TRY_OPEN(capture, cvCreateCameraCapture_Aravis(index))
if (pref) break; if (pref) break;
#endif #endif
}
return capture; return capture;
} }
......
...@@ -128,6 +128,7 @@ CvCapture* cvCreateFileCapture_OpenNI2( const char* filename ); ...@@ -128,6 +128,7 @@ CvCapture* cvCreateFileCapture_OpenNI2( const char* filename );
CvCapture* cvCreateCameraCapture_Android( int index ); CvCapture* cvCreateCameraCapture_Android( int index );
CvCapture* cvCreateCameraCapture_XIMEA( int index ); CvCapture* cvCreateCameraCapture_XIMEA( int index );
CvCapture* cvCreateCameraCapture_AVFoundation(int index); CvCapture* cvCreateCameraCapture_AVFoundation(int index);
CvCapture* cvCreateCameraCapture_Aravis( int index );
CvCapture* cvCreateFileCapture_Images(const char* filename); CvCapture* cvCreateFileCapture_Images(const char* filename);
CvVideoWriter* cvCreateVideoWriter_Images(const char* filename); CvVideoWriter* cvCreateVideoWriter_Images(const char* filename);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment