@@ -26,7 +26,7 @@ approximating the shape of the contour::
2626 from pyefd import elliptic_fourier_descriptors
2727 coeffs = elliptic_fourier_descriptors(contour, order=10)
2828
29- The coefficients returned are the `a_n `, `b_n `, `c_n ` and `d_n ` of
29+ The coefficients returned are the `` a_n `` , `` b_n `` , `` c_n `` and `` d_n ` ` of
3030the following Fourier series representation of the shape.
3131
3232The coefficients returned are by default normalized so that they are
@@ -46,8 +46,8 @@ To use these as features, one can write a small wrapper function::
4646 coeffs = elliptic_fourier_descriptors(contour, order=10, normalize=True)
4747 return coeffs.flatten()[3:]
4848
49- If the coefficients are normalized, then `coeffs[0, 0] = 1.0 `,
50- `coeffs[0, 1] = 0.0 ` and `coeffs[0, 2] = 0.0 `, so they can be disregarded when using
49+ If the coefficients are normalized, then `` coeffs[0, 0] = 1.0 ``,
50+ `` coeffs[0, 1] = 0.0 `` and `` coeffs[0, 2] = 0.0 ` `, so they can be disregarded when using
5151the elliptic Fourier descriptors as features.
5252
5353See \[ 1\] for more technical details.
0 commit comments