Go to the source code of this file.
Classes | |
| class | face_contour_detector.gui.image_settings_frame.ImageSettingsFrame |
| Frame to modify filter parameters. More... | |
| class | face_contour_detector.gui.image_settings_frame.JumpScale |
| A class that behaves like the Tkinter Scale widget but if you click on it the slider jumps to the clicked position. More... | |
Namespaces | |
| namespace | face_contour_detector.gui.image_settings_frame |
This module defines two classes: JumpScale which is a subclass of Tkinter.Scale but jumps to the position where it is clicked instead of moving a fixed amount. | |
Functions | |
| def | face_contour_detector.gui.image_settings_frame._slider_tickinterval |
| Calculate appropriate interval for the sliders. | |
| def | face_contour_detector.gui.image_settings_frame.imgmsg_to_photo_image |
| Transform a sensor_msgs/Image to a ImageTk.PhotoImage. | |
Variables | |
| int | face_contour_detector.gui.image_settings_frame.BLUR_HEIGHT_MAX = 50 |
| constant defining the maximum value for blur height | |
| int | face_contour_detector.gui.image_settings_frame.BLUR_HEIGHT_MIN = 1 |
| constant defining the minimum value for blur height | |
| int | face_contour_detector.gui.image_settings_frame.BLUR_WIDTH_MAX = 50 |
| constant defining the maximum value for blur width | |
| int | face_contour_detector.gui.image_settings_frame.BLUR_WIDTH_MIN = 1 |
| constant defining the minimum value for blur width | |
| int | face_contour_detector.gui.image_settings_frame.CANNY_THRESHOLD1_MAX = 30000 |
| constant defining the maximum value for canny threshold1 | |
| int | face_contour_detector.gui.image_settings_frame.CANNY_THRESHOLD1_MIN = 1 |
| constant defining the minimum value for canny threshold1 | |
| int | face_contour_detector.gui.image_settings_frame.CANNY_THRESHOLD2_MAX = 30000 |
| constant defining the maximum value for canny threshold2 | |
| int | face_contour_detector.gui.image_settings_frame.CANNY_THRESHOLD2_MIN = 1 |
| constant defining the minimum value for canny threshold2 | |
| face_contour_detector.gui.image_settings_frame.current_image = None | |
| This field saves the original with all filters applied according to the current settings as sensor_msgs/Image. | |
| int | face_contour_detector.gui.image_settings_frame.PIXEL_NUM_MAX = 20 |
| constant defining the maximal amount of pixels that can be passed as argument to the short line deletion filter | |
| int | face_contour_detector.gui.image_settings_frame.PIXEL_NUM_MIN = 1 |
| constant defining the minimal amount of pixels that can be passed as argument to the short line deletion filter | |
| int | face_contour_detector.gui.image_settings_frame.SEARCH_RADIUS_MAX = 20 |
| constant defining the maximum search radius for edge connection | |
| int | face_contour_detector.gui.image_settings_frame.SEARCH_RADIUS_MIN = 1 |
| constant defining the minimal search radius for edge connection | |
| int | face_contour_detector.gui.image_settings_frame.SLIDER_LENGTH = 200 |
| The length of all sliders used on this frame. | |