API Reference#

This page lists all the functions within pyflct.

pyflct.flct Module#

Functions#

flct(image1, image2, deltat, deltas, sigma)

Performs Fourier Local Correlation Tracking by calling the FLCT C library.

pyflct.utils Module#

Functions#

read_2_images(filename[, order])

Reads two arrays of the same size from a dat file.

read_3_images(filename[, order])

Read three arrays of the same size from a dat file.

write_2_images(filename, array1, array2[, order])

Write two arrays of the same size to a dat file.

write_3_images(filename, array1, array2, array3)

Write three arrays of the same size to a dat file.

column_row_of_two(array1, array2)

Takes two arrays and swaps the order in which they were stored, changing from column major to row major and not vice-versa.

column_row_of_three(array1, array2, array3)

Takes three arrays and swaps the order in which they were stored, changing from column major to row major and not vice-versa.