I am doing a Matlab project in which I have to track faces, it runs fine until I used:
% Track the face over successive video frames until the video is finished.
while ~isDone(videoFileReader)
The above code gives the error
Undefined function 'isDone' for input arguments of type 'single'.
Is there is any substitute for this loop?
videoFileReadershould not be of type "single". The real problem must be elsewhere in your code (show where you usevision.VideoFileReader). - nkjt