Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

PoseExtraction.m 456 B

123456789101112131415161718
  1. % This entry point will perform all analyses on your mice data.
  2. % You will be prompted to provide a folder that contains your DLC results
  3. import tools.PoseExtractionSingle;
  4. pathdir = uigetdir();
  5. files = dir(pathdir);
  6. nfiles = size(files);
  7. disp(size(nfiles));
  8. for i=1:nfiles[1]
  9. if files(i).isdir
  10. num = files(i).name;
  11. if ~isnan(str2double(num))
  12. PoseExtractionSingle(pathdir, num);
  13. end
  14. end
  15. end