I have multiple jpeg or tiff images with timestamps as their names from a high frame rate camera. I want to extract their time stamps in an the list format without the .tiff or .jpeg extension. Kindly help

3 次查看(过去 30 天)
I have multiple jpeg or tiff images with timestamps as their names from a high frame rate camera. I want to extract their time stamps in an the list format without the .tiff or .jpeg extension.
So far the following code has helped me to get the the numbers in cell but I am not able to remove the extension from those cell.
% folderPath1 = actualFile folder
clear all;
clc;
files1 = dir('filepath');
dinfo = dir('filepath');
names_cell = {dinfo.name};
%names_cell= names_cell';
X = cell2table(names_cell);
Y = table2array(X);
Z=Y';

回答(1 个)

Delprat Sebastien
You may use fileparts to retrieve the name and extention:
[filepath,name,ext] = fileparts(filename)
probably that a loop will be needed, I'm not sure if it support cell array.
Last but not least look at the following to convert the string into a date
t = datetime(DateStrings,'InputFormat',infmt)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by