Table of Contents
Bases: object
A class to extract pixels from a single image
Methods
__call__(index) | Extract strong pixels from an image |
Bases: object
Class to find spots in an image and extract them into shoeboxes.
Methods
__call__(imageset) | Find the spots in the imageset |
Bases: object
A class to hold the result from spot finding on an image.
When doing multi processing, we can process the result of each thread as it comes in instead of waiting for all results. The purpose of this class is to allow us to set the pixel list to None after each image to lower memory usage.
Bases: object
A class to do spot finding and filtering.
Methods
__call__(datablock) | Do the spot finding. |
A function to run jobs in batches in each process
Bases: object
Methods
__call__(flags, **kwargs) | Call the filter and print information. |
run(flags[, sweep, shoeboxes]) |
Bases: object
Methods
__call__(flags, **kwargs) | Call the filter and print information. |
run(flags[, sweep, observations]) | Run the filtering. |
Bases: object
A class to run multiple filters in succession.
Methods
__call__(flags, **kwargs) | Call the filters one by one. |
check_flags(flags[, predictions, ...]) | Check the flags are set, if they’re not then create a list of Trues equal to the number of items given. |
Check the flags are set, if they’re not then create a list of Trues equal to the number of items given.
Parameters: |
|
---|---|
Returns: | The filtered flags |
Bases: object
Filter the reflections by the number of pixels in the shoeboxes.
Methods
__call__(flags, **kwargs) | Call the filter and print information. |
run(flags[, observations, shoeboxes]) | Run the filtering. |
Bases: object
Methods
__call__(flags, **kwargs) | Call the filter and print information. |
run(flags[, observations, shoeboxes]) | Run the filtering. |
Bases: object
Methods
__call__(flags, **kwargs) | Call the filter and print information. |
run(flags[, sweep, observations]) |
Bases: object
Methods
__call__(flags, **kwargs) | Call the filter and print information. |
run(flags[, sweep, observations]) |
Bases: object
Factory class to create spot finders
Methods
configure_algorithm(params) | Given a set of parameters, construct the spot finder |
configure_filter(params) | Get the filter strategy. |
configure_threshold(params) | Get the threshold strategy |
from_parameters([params]) | Given a set of parameters, construct the spot finder |
load_image(filename_or_data) | Given a filename, load an image. |
Given a set of parameters, construct the spot finder
Parameters: | params – The input parameters |
---|---|
Returns: | The spot finder instance |
Get the filter strategy.
Parameters: | params – The input parameters |
---|---|
Returns: | The filter algorithm |
Get the threshold strategy
Parameters: | params – The input parameters |
---|---|
Returns: | The threshold algorithm |