From 2a0281518f026ed6c69fe259f393faec68c2bd13 Mon Sep 17 00:00:00 2001 From: HaleySchuhl Date: Thu, 12 Sep 2024 11:53:27 -0500 Subject: [PATCH] minor clarifications --- docs/napari_save_coor.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/napari_save_coor.md b/docs/napari_save_coor.md index f23815b..6ea22e1 100644 --- a/docs/napari_save_coor.md +++ b/docs/napari_save_coor.md @@ -11,7 +11,7 @@ Save Points Labeled in Napari to a File - Filepath - File to save data. If the file exits an extension will be added. - **Context:** - - Save points labeled in Napari to a file in case the same points need to be used. + - Save points labeled in Napari to a file to checkpoint annotation progress or reuse. - **Example use:** - Save points labeled to a file @@ -23,13 +23,11 @@ import plantcv.annotate as pcvan # Create an instance of the Points class img, path, name = pcv.readimage("./grayimg.png") - +# Should open interactive napari viewer viewer = pcvan.napari_label_classes(img=img, classes=['background', 'wing','seed']) dictobj = pcvan.napari_save_coor(viewer, 'testdata.txt') -# Should open interactive napari viewer - ``` ![Screenshot](img/documentation_images/napari_label_classes/napari_label_classes.png)