-
Notifications
You must be signed in to change notification settings - Fork 0
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
Find centre of rotation #24
Conversation
…finding-centre-of-rotation
…uare of different gray lines
…to worse performance...
… feature - also make separate module for hooks
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #24 +/- ##
===========================================
+ Coverage 20.39% 44.33% +23.94%
===========================================
Files 12 6 -6
Lines 760 636 -124
===========================================
+ Hits 155 282 +127
+ Misses 605 354 -251 ☔ View full report in Codecov by Sentry. |
Improve tests, suggestions from @JoeZiminski in #25 : |
…ferently and reorganize part of the fixtures
Two dot diff with current state of main 1,674 additions and 318 deletions |
Easier to solve conflicts through a new branch and new PR -> #30 |
Description
What is this PR
Why is this PR needed?
See #12
What does this PR do?
Creates methods and pipeline to find the centre of rotation in the incremental dataset.
Pipeline
Find the centre
Find the centre of rotation using the incremental rotations datasets, in which the sample was rotated at discrete angles with 10deg intervals. Centre of rotation is found by fitting an ellipse to the brightest ROI location at each of the 10deg configurations.
New methods include:
find_center_of_rotation
get_coords_of_largest_blob
plot_blob_detection
fit_ellipse_to_points
plot_ellipse_fit_and_centers
Use the new centre
In order to use the new centre of rotation, the
derotate_an_image_array_line_by_line
needed to be totally rewritten. I am discarding the usage ofscipy.ndimage.rotate
and using classic linear algebra to rotate the matrices. With this new implementation the derotation is so much faster! 🚀How has this PR been tested?
The performance of the de-rotation when the centre of rotation is shifted has been tested with simulated data generated by the class
Rotator
.I created a stepwise array of angles to imitate the incremental rotation dataset, and a sinusoidal array as the main experimental session dataset.
I then rotated a sample image that has two blobs that imitate two ROIs (one brighter than the other).
Ellipse fit works well with a shifted centre:
And derotation works smothly. This is the proof that in principle my derotation with shifted centres works.
I added tests to cover this new functionality and the pipeline.
Is this a breaking change?
No
Checklist: