Opened 17 years ago
Closed 17 years ago
#8 closed enhancement (invalid)
Segment the array prior to searching
Reported by: | Matthew Whiting | Owned by: | Matthew Whiting |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | Searching | Version: | |
Severity: | normal | Keywords: | |
Cc: |
Description
Since we are now working with a single set of stats for the entire cube, it is possible to segment the cube so that it is represented as a set of bools (ie. true/false) as to whether a given pixel is a detection or not.
This would then make the searching a more trivial exercise, since it will be a simple binary choice. You would not have to call the isDetection functions on each step, just look at the segmented array. There would need to be a new array created (albeit just of bools), but this could be done as part of a searching function (one of two ways, depending on reconstruction state) and then a generic cubic searching function could take over.
Oops -- duplicate of #7