cogrecon.misc package

Submodules

cogrecon.misc.draggable_points module

class cogrecon.misc.draggable_points.DraggablePoint(point, move_callback=None)[source]

This class is used to managed points which can be dragged around a grid for debugging purposes.

This class is mot current used in typical analysis or visualized.

connect(move_callback=None)[source]

This function is used to connect a movement callback function which can be used for redrawing based on updated draggable point locations.

Parameters:move_callback – the callback to fire whenever a movement is completed (i.e. when on_release fires)
disconnect()[source]
lock = None
on_motion(event)[source]

When the draggable object is moved around, this function fires.

Parameters:event – the event object associated with the object movement
Returns:None
on_press(event)[source]

When the draggable object is pressed, this function fires.

Parameters:event – the event object associated with the object press
Returns:None
on_release(e)[source]

When the draggable point is release, this function fires.

Parameters:e – the event object associated with the object release
Returns:None
cogrecon.misc.draggable_points.test_draggable_points()[source]

This function allows quick, easy testing of the DraggablePoints class for the purpose of manually dragging points around for debugging purposes for the algorithms in this package.

This module is mot current used in typical analysis or visualized.

cogrecon.misc.heatmap_transform module

cogrecon.misc.heatmap_transform.test_heatmap_transform()[source]

This function test the dynamic heatmap module used to help perform 2D histograms in a hex grid.

This module is mot current used in typical analysis or visualized.

Module contents