Skip to main content

Ultrasound Raw data eXchange file format C++ implementation and wrapping in Python and Matlab

Project description

URX

Description

The Ultrasound Raw data eXchange file format is a structure of data to store ultrasound acquisition.

You may use it with various languages (C++, Python and MATLAB).

Get more informations in the Wiki about class diagram.

Table of Contents

  • Common installation and usage in C++, MATLAB, Python.
  • Build it yourself for C++, MATLAB, Python with CMake.

Use it with C++

There is no installer for C++ user. You need to build it yourself. If you don't need to read / write file, urx library is header-only.

See advanced uses for more information.

Configuration

First, you need to get Urx package with find_package. If package is not found, set Urx_DIR=INSTALL_PATH/lib/cmake/Urx-XXXYYY.

find_package(Urx REQUIRED)

You will have access to targets:

  • Urx::Urx: header-only library of the urx struct.
  • Urx::UrxUtils: library with helper to manipulate urx struct, including read / write in hdf5 file format.

CMake examples

find_package(HDF5 REQUIRED NAMES hdf5 COMPONENTS CXX hdf5::hdf5-static)
find_package(Urx REQUIRED)
add_executable(UrxTestIo ${SRCS_FILES})
target_link_libraries(
  UrxTestIo PRIVATE Urx::Urx Urx::UrxUtils hdf5::hdf5-static hdf5::hdf5_cpp-static)

Urx::UrxUtils is only needed if you use helpers. If you only need the urx file format, only Urx::Urx is needed.

hdf5::hdf5-static hdf5::hdf5_cpp-static is only needed if the library has been built with HDF5 support. In this case, hdf5 has been built in static mode.

You may found a complete example of CMakeLists.txt in test/urx or in test/io folders.

C++ examples

All dynamic memory allocation should be stored in a shared_ptr.

#include <memory>

#include <urx/dataset.h>
#include <urx/probe.h>
#include <urx/utils/io/reader.h>
#include <urx/utils/io/writer.h>

auto dataset = std::make_shared<urx::Dataset>();

auto probe = std::make_shared<urx::Probe>();
probe->description = "Probe 1";
dataset->acquisition.probes.push_back(probe);

urx::utils::io::writer::saveToFile("file.urx", *dataset);

auto dataset_loaded = urx::utils::io::reader::loadFromFile("file.urx");

You may found an example for all C++ classes in file urx/utils/test/dataset_gen.h in function generateFakeDataset and much more in the official wiki.

Use it with MATLAB

See advanced uses for more information.

MATLAB installer

Urx MATLAB homepage is hosted in MATLAB File Exchange. To download the toolbox, select Download > Toolbox. It compatibles for both Windows and Linux.

Requirements

MATLAB needs a C compiler to load the C library in Urx toolbox (i.e. Visual Studio or MinGW). To use MinGW, see [doc/matlab.md#install-mingw-c-compiler] paragraph.

Configuration

If you are using Urx from MATLAB toolbox, you just have to enable Unicode if you need it (feature('DefaultCharacterSet','UTF-8');).

Examples

dataset = urx.Dataset();

probe1 = urx.Probe();
probe1.description = 'Probe 1';
excitation1 = urx.Excitation();
dataset.acquisition.excitations = [excitation1];

urx.saveToFile('test.urx', dataset);

dataset2 = urx.loadFromFile('test.urx');

You may found a complete example in file test/matlab/+urx/+UnitTests/FileFromScratch.m and much more in the official wiki.

Important note

Some field are optional or can be empty (see C++ UML diagram). If you want to unassign a value, don't use [] but use empty method of the class (i.e. urx.ElementGeometry.empty).

Use it with Python

See advanced uses for more information.

Python wheel

Urx Python is hosted in Pypi.

From your Python's virtual environment, run pip install ultrasound_rawdata_exchange.

Examples

import ultrasound_rawdata_exchange as urx;

dataset = urx.Dataset()

probe1 = urx.Probe()
probe1.description = 'Probe 1'
excitation1 = urx.Excitation()
dataset.acquisition.excitations = [excitation1]

urx.saveToFile('test.urx', dataset)

dataset2 = urx.loadFromFile('test.urx')

You may found a basic example in folder test/python and much more in the official wiki.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ultrasound_rawdata_exchange-1.3.2-pp311-pypy311_pp73-win_amd64.whl (2.2 MB view details)

Uploaded PyPyWindows x86-64

ultrasound_rawdata_exchange-1.3.2-pp310-pypy310_pp73-win_amd64.whl (2.2 MB view details)

Uploaded PyPyWindows x86-64

ultrasound_rawdata_exchange-1.3.2-pp39-pypy39_pp73-win_amd64.whl (2.2 MB view details)

Uploaded PyPyWindows x86-64

ultrasound_rawdata_exchange-1.3.2-pp38-pypy38_pp73-win_amd64.whl (2.2 MB view details)

Uploaded PyPyWindows x86-64

ultrasound_rawdata_exchange-1.3.2-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

ultrasound_rawdata_exchange-1.3.2-cp314-cp314-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

ultrasound_rawdata_exchange-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

ultrasound_rawdata_exchange-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

ultrasound_rawdata_exchange-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

ultrasound_rawdata_exchange-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

ultrasound_rawdata_exchange-1.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

ultrasound_rawdata_exchange-1.3.2-cp38-cp38-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ultrasound_rawdata_exchange-1.3.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 09b2697f89176814e164c6414dd94d97e8a4c782b7b14ba45b4a2aadff76ef2f
MD5 cc9d610c35ce675483268a8f8bc16565
BLAKE2b-256 fcf7b18a384e1b28de8cbb352acf14e588156407f8b418b8cfbc9e6b00550854

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b05736f281b4d175c63a4ca11993883bd0d1b3e7da7d048949544e35f66317de
MD5 7dc5ac24cd6299ac9b5517feca2bd5f2
BLAKE2b-256 f1c5a4523805be1ee2ce64e71f373149755f1a69ba9be79813080bf0c89a5a7e

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 10bb2c841f069bb9421d8666814ee70b391cc7afaaba02d12ce75d2e76fd9812
MD5 8c8fc1c9cb87028a0bff03b84323d416
BLAKE2b-256 b89a53ee0b11ffc1def542667313f13458724d296b84733f0321b6907309a5e4

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a0524ac352bee99348dd7d487eed95fc00537d501d2dd9e4282714731f4c421f
MD5 d83bdbd4b72e19a9d1662078d207ba00
BLAKE2b-256 bce1e2af4d94be2008fd080bc76a4cf966cd4f63cdbe002b3f4a348f511843c6

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a8af9a6659cb62658b5dba1f427e63b3e534e2333533a56f5cf09e3b5d244642
MD5 db142c50074248726aec89af3d7d4137
BLAKE2b-256 d4c618a5803bb82ab0a768a89c69c8b168658dd70e7a352033636e4a0d0ab28e

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 97b09bfb00733052e7617a20785d56aeb2e67b79a619f8750dcdd10667b4504f
MD5 1fa929d12ca8d9fdff347700b5f14e21
BLAKE2b-256 5d953a3b5e96564dfe6f9f4ce75223290993718747a0f714c93a6bc9d93d9a1a

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4df7bb73ad4f1b3fb1bc2b8bd306c38202352b7a30e1b68e1bea01f669f5573d
MD5 848a54442ab75ec0126494dc3bc7da6b
BLAKE2b-256 09c81509137eba14f017032ac5f14e14bd753009ef46358833475ac709806ce9

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 115c929b8f1de9b07c074fba93a6502051f51977be0136845a4327ec203316b4
MD5 7eaa3a5888a05f0df10392e618208d4d
BLAKE2b-256 d8c3dcd3ee7fcde8a70856602e537d1d0231a4faaf9aeefd19ceb06fecfcbc99

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ad9801bea5348154b50c7bd7b11191424b6c6b454d1244d0ef0637eff6862294
MD5 f040025b8953841fed1081a45436faf3
BLAKE2b-256 83234bf31924e35fc0b135340e87aafe8415b3d157ae4c361241522a4026dbd5

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ededecd1eecd2fbeafd338284c521237c0e6b7c27885445ed5426b489eab717
MD5 9075dd117d280c1aa7b129cc4cf52f3f
BLAKE2b-256 df77ee390d9b391a5643db217b0ec36d255b7789cba19b0fcc142d89a0015ada

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 91a7436e4ca7e4239bbba01102ca4cd1cdbb0f363f33843f28211061c5ae6f17
MD5 6769462e639764aa806569b929f0e7bf
BLAKE2b-256 ab6360253eb43bf60f2be5a157d83d4f8af65149024c05c54ae63a9d0b645ab8

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 36db0fd41b76fb5e9fd99618fa5f20abd86fb735cb809e9228ce2886051be3a0
MD5 7cce6754da15a1de32e1706288bc4301
BLAKE2b-256 8a7ccc9b05b8eb121b2211d705795008aed053269cff9de8b3f35529ee838c79

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a084c104f4dab32e3d35b2b208101f43f5dd4d4bb213388c6e4ca14edecc21b0
MD5 e386e9a150503291741e95f6862dfe9e
BLAKE2b-256 66944719ff28d85fab1daea43e36a605d193ac3b2cf95d223150e505ee460b01

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 66c9c116380f0c28127253bc3b57c60634e412492b0a1800e9bbe6b60643d300
MD5 a8a25387b1d32a9531454bd12a9abd05
BLAKE2b-256 9df5deb0d30390c686a03ebe70617756772fc120059ab65855c4964cf7bbc3be

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0cddb9f94833e927e06a4ed7feb612a3f11dd10b3e2eeeddc2d744d46c93c0bf
MD5 2df9b164c7742405648b193ae087c715
BLAKE2b-256 367f3bf77dab0191dd6e46097d943657cdd3e2d36fecde69e4ee20e8f2563e8f

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5488d88d0b5bce13f59247394ed7616478a4282cd8b68a8309f9b9675d31006
MD5 1a97354a6e8f79504cf654452a90acd2
BLAKE2b-256 aed4907453ad5657ff45b44f12d23e408050f349c1bd4bf063b5594d19d2e5f1

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e18c4fcddf6ada5ae4d4b8805c82663da38d6dd58c23e9250e872ae25fce957c
MD5 acc000ad384e531c49b5e2a6f7c014ce
BLAKE2b-256 b3d3b9c9889bd8df1a0d8c787795d40b74e27e51a0ad3c52836f0437c25cf719

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e838dfa66f5f52eab5f6074ef00078a57a9d48938fbf1bec6b5fe506594476e
MD5 dbe6f710d8fed001cd282b91afaac674
BLAKE2b-256 07a2128c61b04013e0993e3138b93f00fbeba91404afe02ad104d4d29c0bb966

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7138196de6563635c249c91b73586944740d7ac05561fb50d7153f1102b9be17
MD5 6f8f6265388a395011f5885b552de40d
BLAKE2b-256 9e08a04dd292f2ce1cfd24218c9cd0652ef93f287c50d263336c632f947a3a9a

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 594deecc06716d1aaa1611ed235c42c7f4bc3024d4d1fa02cc399c8b8c13a204
MD5 3fa0d9dbfc31812129944c2c4f6d155c
BLAKE2b-256 1797af1729c67ee18b87d962479a12af42cba8138783ccba14a641d2cdf29bef

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4e206ffc41a3c04193e1ac318e1ede9a18e1ffa956716c7cdcb0d3210c082887
MD5 38819cd6bf99f8a140ec749b371479bb
BLAKE2b-256 9fe1d7310fa4ea94b09cdcaa9861dac5e420e3eebd9654f960869a9de4c46567

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9609ee0015421d306a219bff155c6d78ffd1a70f354afcdea0fc07d1ace172fa
MD5 5520e728db5263ebf6b4816428552928
BLAKE2b-256 788b60a102841915c6fa02d8b6bca7383a55760a8be5a10e400165b455839a00

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 884aaa0207908ddcb7bbf734fe2b8efd10d49ee9c553563a790a71d12a8566e4
MD5 d7f08e3ce774ce29e962b68862755d4d
BLAKE2b-256 4363ebf89a5845e6aba7c21ff34700c3cf70783b4ea8f867bd142b689728e587

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f899bcc28709b56cc64da6b0b2a6fc315169ce5a17bed7854ba6946b914d2c9b
MD5 ce39bed137ff0b9275b45aa7738b1497
BLAKE2b-256 01ecf829b5ca4eb4aa9cd50184526905caa65e0e1531de612412fab5d21f2e51

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab3ad509d664e2a472a45da4a9b91df5e51a9bd4a54a82da62e32d1ebe7e218d
MD5 d1605594d29856a8ebdb435a3b8a2263
BLAKE2b-256 db252d0c140a4af8a77ce6309ae9b927c0d3c98438da8a81f275cb8879d24135

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7044144aa5920292c70ead07f6fe435ba28710e4e3ccfacb5e8b4bfa85b0eff8
MD5 473025a5a2462c38d3ccfe54b945155f
BLAKE2b-256 9bf66e2808b455ffa4adcf1fc754275820a58cb07d45b9e67da716f9fe4b024d

See more details on using hashes here.

Supported by

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