我得到一个用于搜索的时间戳,并且正在使用命令nnet = alexnet; % Load the neural net
picture=camera.snapshot;
picture = imresize(picture,[227,227]); % Resize the picture AlexNet can now classify our image.
label = classify(nnet,picture); % Classify the picture
image(picture); % Show the picture
title(char(label)); % Show the label
对其进行转换。它正确地为我提供了日期和时间,即yyyy-mm-dd H:M:S格式,但是我需要找到从时间戳获取的日期时间与当前日期时间之间的时差(以分钟为单位)。 / p>
答案 0 :(得分:0)
使用
日期+%s
获取当前时间作为时间戳(距离EPOCH的秒数)。由于Unix时间戳只是一个数字(自1970年以来的秒数),因此您可以将这两个时间戳相减并除以60得到分钟。
如果您的日期命令不支持%s,则Biffen注释会有所帮助。