FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Unverified Commit 9887e2d3 authored by Eduardo Gonzalez Solares's avatar Eduardo Gonzalez Solares
Browse files

Cythonize get_coords function

parent 7671a18b
No related branches found
No related tags found
1 merge request!3Dask
......@@ -5,6 +5,7 @@ __pycache__/
# C extensions
*.so
utils.c
# Distribution / packaging
.Python
......
from Cython.Build import cythonize
from setuptools.extension import Extension
from setuptools import find_packages, setup
with open('README.rst') as readme_file:
......@@ -32,6 +34,7 @@ setup(
keywords='stpt_pipeline',
name='stpt_pipeline',
packages=find_packages(include=['stpt_pipeline']),
ext_modules=cythonize(Extension('stpt_pipeline.utils', ['stpt_pipeline/utils.pyx'])),
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
......
......@@ -25,4 +25,4 @@ class Settings:
do_flat = True
do_defringe = False
channel_to_use = 4
cof_dist = np.array([3.93716645e-05, -7.37696218e-02, 2.52457306e01]) / 2.0
cof_dist = (3.93716645e-05 / 2, -7.37696218e-02 / 2, 2.52457306e01 / 2)
......@@ -60,52 +60,6 @@ def defringe(img):
return fr_img
#
# get_coords is the function that feeds geometric_transform
# in order to correct for the optical distortion of the detector.
#
def get_coords(coords, cof, center_x, max_x, direct=True):
"""[summary]
Parameters
----------
coords : [type]
[description]
cof : [type]
[description]
center_x : [type]
[description]
max_x : [type]
[description]
direct : bool, optional
[description], by default True
Returns
-------
[type]
[description]
"""
max_desp = cof[0] * coords[1] ** 2 + cof[1] * coords[1] + cof[2]
dy_cof = max_desp / (max_x - center_x) ** 2
if direct:
if coords[0] > center_x:
sign = 1
else:
sign = -1
xi = np.abs(coords[0] - center_x)
return (center_x + sign * (xi + dy_cof * xi ** 2), coords[1])
else:
if coords[0] > center_x + cof[2]:
sign = 1
else:
sign = -1
xi = np.abs(coords[0] - center_x - cof[2])
return (
center_x + sign * (np.sqrt(1 + 4 * dy_cof * xi) - 1) / (2 * dy_cof),
coords[1],
)
def magic_function(x, flat=1): # TODO: Call this some other name
"""[summary]
......
from libc.math cimport abs
def get_coords(tuple coords, tuple cof, float center_x, float max_x):
"""[summary]
Parameters
----------
coords : [type]
[description]
cof : [type]
[description]
center_x : [type]
[description]
max_x : [type]
[description]
Returns
-------
[type]
[description]
"""
cdef float max_desp, dy_cof, xi, r0, r1
cdef int c0, c1, sign
cdef tuple res
c0 = coords[0]
c1 = coords[1]
max_desp = cof[0] * c1 ** 2 + cof[1] * c1 + cof[2]
dy_cof = max_desp / (max_x - center_x) ** 2
if c0 > center_x:
sign = 1
else:
sign = -1
xi = abs(c0 - center_x)
r0 = center_x + sign * (xi + dy_cof * xi ** 2)
res = (r0, c1)
return res
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment