Installation • Getting Started • Tutorials • Contributing • Acknowledgements
A MATLAB graphical user interface (GUI) for openMINDS. This toolbox builds upon the openMINDS_MATLAB toolkit, offering interactive forms to streamline metadata entry."
MATLAB 2023a or later
- Clone or download this repository
- Navigate to the repository folder in MATLAB
- Run
setup.m
This is a very minimal example on how to try out this toolbox. More examples and interactive workflows will be added later.
% Create a filepath to a file for saving metadata
filePath = fullfile(userpath, "openMINDS_MATLAB", "demo", "datasetversion_gui.jsonld");
if ~isfile(filePath)
dsv = openminds.core.DatasetVersion();
collection = openminds.Collection();
collection.save(filePath)
mode = "create";
else
collection = openminds.Collection(filePath);
dsv = collection.list("DatasetVersion");
mode = "modify";
end
dsv = om.uiCreateNewInstance(dsv, collection, "Mode", mode);
if ~isempty(dsv)
collection.save(filePath)
end
Todo
Todo
Todo