MATLAB: I am trying to use the imageSet function with you database but it is giving me an error saying undefined function imageSet for input argument of type char. what should I do

Computer Vision Toolboximage processing

faceDatabase = imageSet ('FaceDatabaseATT','recursive');

Best Answer

The documentation page indicates that imageSet is part of Computer Vision System Toolbox and this function was introduced in release R2014b. You will need to have this toolbox available and be using this release or later to use imageSet.
Related Question