Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve mask help text #257

Merged
merged 7 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# ChangeLog

## vx.x.x
* Edit mask help text #257
* Edit registration-tab name from "Manual" to "Initial" #241
* Add automatic registration functionality #304
* Set empty pop-up menus for the main windows #217
Expand Down
11 changes: 9 additions & 2 deletions src/idvc/dvc_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,15 @@ def CreateHelpPanel(self):
"9. Once satisfied with the registration, move to the next tab. Be aware that point 0 is the point from which DVC will start."
)

self.help_text.append("To create a mask you need to create a selection. Start tracing a freehand region for the selection by clicking 'Start Tracing' button.\n"
"When you are happy with your region click 'Create Mask'.")
self.help_text.append(
"1. If you already have a mask file, upload it.\n"
"2. To create a new mask click 'Start tracing'. Click on the image and trace a freehand region while holding the mouse button.\n"
DanicaSTFC marked this conversation as resolved.
Show resolved Hide resolved
"3. If you are not happy with the tracing, click on 'Stop tracing' and then 'Start tracing'.\n"
"4. If you wish to extend the mask in 3D click on 'Extend mask' and select the number of slices above and below.\n"
"5. When you are happy with your region click 'Create Mask'.\n"
"6. Save the mask and name it in the pop-up dialog.\n"
"7. To restart the mask creation, click on 'Clear mask' and repeat 2-6.\n"
"8. Finish the process by selecting the saved mask and loading it.")

self.help_text.append("Dense point clouds that accurately reflect sample geometry and reflect measurement objectives yield the best results.\n"
"The first point in the cloud is significant, as it is used as a global starting point and reference for the rigid translation between the two images.\n"
Expand Down