Why won't vision.DeployableVideoPlayer work in MATLAB compiler deployed executable?
    4 views (last 30 days)
  
       Show older comments
    
    Alexander Kuyper
 on 28 Jan 2016
  
    
    
    
    
    Commented: Sabina
 on 10 Jan 2019
            I am trying to deploy some code using the fast video display calling the Computer Vision Toolbox vision.DeployableVideoPlayer. This system object is supposedly supported with the MATLAB Compiler.
Here is some quick demo code:
%************
function TestVid()
% Quick test of MATLAB compiler on vision.DeployableVideoPlayer
vidp = vision.DeployableVideoPlayer;
for i=1:1000,
    step(vidp,rand(2048,2048,3)),
end
release(vidp)
%*************
I compile with MATLAB compiler deploytool, and the weird thing is that it works fine on my PC (64-bit Windows 7 Pro), but will exit without giving an error if I install and try to execute on two other laptops (64-bit Windows 7 Pro & Windows 8)
I just upgraded to 2015b from 2015a hoping would fix, but did not. Seems like there is some file or .dll that is not getting installed, but I have no way of finding out what the issue is. There is no previous information I could find regarding this on the internet either.
2 Comments
  Harsheel
    
 on 28 Jan 2016
				to see what error you get, can you try running the exe file from the Windows DOS prompt?
Accepted Answer
More Answers (1)
  Birju Patel
    
 on 28 Jan 2016
        Hi,
That's strange. What happens if you try to reduce the image size from 2048x2048x3 to something like 10x10x3? Does it still fail?
See Also
Categories
				Find more on Computer Vision Toolbox in Help Center and File Exchange
			
	Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



