Hello Jacek,
As per my understanding, you have labelled images using the Image Labeler App and want to know how to use these labels for training a network using the Deep network Designer App.
I would suggest you try the following steps for this purpose:
- In the Image Labeler app, export the labels as a ‘gTruth’ type object to your workspace using the ‘To Workspace’ option under the ‘Export’ button in the ‘Image Labeler’ tab.
- Create a ‘pixelLabelDatastore’ object using the ‘pixelLabelDatastore’ command with the ‘gTruth’ object as the argument.
pxl=pixelLabelDatastore(gTruth);
3. In the Deep Network Designer app, go to the ‘data’ tab and click on ‘Import Custom Data’ option under ‘Import Data’ button. Now select the pixelLabelDatastore, that we created, as Training data.
Refer to the following documentation to learn about the ‘pixelLabelDatastore’ function:
Hope this helps!