When compiling a standalone application, how can I include the class VideoReader?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Yifei Wang
el 31 de Ag. de 2018
Comentada: OCDER
el 4 de Sept. de 2018
VideoReader is a class definition in MATLAB toolbox. The toolbox should be included in MATLAB compiler, but it seems that this class definition is not included. I tried to add the M file into the 'files required', but I was not let to do that. So how can I add the class VideoReader?
2 comentarios
OCDER
el 31 de Ag. de 2018
Can you show the code you are trying to compile for VideoReader? Does it work without error in Matlab? What is the error message that you are getting?
I have no issues compiling functions containing VideoReader via mcc.
Respuesta aceptada
OCDER
el 4 de Sept. de 2018
Change this:
readerobj = VideoReader(VideoName);
to this:
readerobj = VideoReader(fullfile(VideoPath, VideoName));
Always provide the full video file path, otherwise the compiled software cannot find the video file. The Matlab working paths are different form those of a compiled application.
2 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!