1. 判断是否存在指定的video_name, 若不存在,则在给定save_path下,新建一个video_name文件夹: 1 sec_path = [save_path, video_name, '/']; 2 if ~exist(sec_path,'file') 3 mkdir([save_path, video_name]); 4 end 2. 将gpuArray转换为matlab可以保存的格式,如:uint8 等. if you save the gpuArray data direc…