Skip to main content

Parallel beamforming wrapper for native code

Project description

fast-DAS

Parallel delay-and-sum implementation wrapping native CUDA from python

About

  • Supports windows and unix
  • Uses CPU-multithreading when use_gpu is False
  • Uses NVIDIA CUDA library when use_gpu is True
  • Cross-compiled on windows using WSL and CMake

Usage

fast-DAS is a python wrapper and native code implementation for the delay-and-sum algorithm pre-compiled in C++ (CPU version) and CUDA (GPU version).
The goal is to boost the digital beamforming process for ultrasound acquisitions.

Installation

pip install fast-das

Input format

To beamform with fast-DAS, initialize a DAS object based on your compute preference (CPU/GPU):

    from fastDAS import delay_and_sum as fd
    das = fd.DAS(use_gpu=True)

For out-of-the-box usage with Verasonics Vantage systems, save the MATLAB workspace after collecting an RF acquisition.
The workspace file should contain at least the following variables as a .mat file:

    {
        'NA': {'NA_tot':_, 'NA':_},
        'PData': {
            'Size': _,
            'PDelta': _,
            'Origin': _,
        },
        'Trans': {
            'lensCorrection': _,
            'ElementPos': _,
            'WavelenToMm': _,
        },
        'TX': {
            'Steer': _,
            'Delay': _,
        },
        'TW': {
            'Peak': _
        },
        'Receive': {
            'SamplesPerWave': _,
            'StartDepth': _,
            'StartSample': _,
            'EndSample': _
        }
    }

In a plane wave compounding acqusition, the init_delays() function can be used to calculate the Tx and Rx delay map based on a workspace like the one above.
Otherwise, you can implement the del_Tx and del_Rx variables yourself.
Note that the units of these delay maps are not [usec] but rather [samples].

Customized Usage

If you want to use the native code wrapper in an acquisition other than plane wave steering, calculate your own del_Tx and del_Rx delays.
You'll need to provide the DAS class with some basic information on the acquisition protocol (see DAS.beamform() docstring for specific details)

    das = fd.DAS(use_gpu=True)

    del_Tx = np.zeros((NA, FOVz, FOVx), dtype=np.float32)
    del_Rx = np.zeros((n_el, FOVz, FOVx), dtype=np.float32)

    # Calc the delays
    # ...
    
    das.del_Tx = del_Tx
    das.del_Rx = del_Rx

    RF = get_your_RF_data()
    das.beamform(RF, N, start_sample, end_sample)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fast-das-1.0.0.tar.gz (13.1 kB view details)

Uploaded Source

Built Distribution

fast_das-1.0.0-py3-none-any.whl (614.9 kB view details)

Uploaded Python 3

File details

Details for the file fast-das-1.0.0.tar.gz.

File metadata

  • Download URL: fast-das-1.0.0.tar.gz
  • Upload date:
  • Size: 13.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.8

File hashes

Hashes for fast-das-1.0.0.tar.gz
Algorithm Hash digest
SHA256 19c0df3d0a46de2526d4801130982a366c4f3f42a2fb33a91b83c50148220545
MD5 0a84ef9ac3cfe536e4994613f3d82068
BLAKE2b-256 81d9a64ac36f8156ed68f1d2e9ce7b6e6794bad8256b7bbf44a46b0a752efaf3

See more details on using hashes here.

File details

Details for the file fast_das-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: fast_das-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 614.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.8

File hashes

Hashes for fast_das-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5e429347da45d8d3b83b9da97e56996fbc206048a1569e42c69ec524246a87db
MD5 73ba2f54e525673792c5a5e140d5bca7
BLAKE2b-256 25a229433182ed0a2ba5f708b4245b560ceaffd38ac6a00a1c6fe0b088c846d3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page