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.1-pp311-pypy311_pp73-win_amd64.whl (2.2 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded CPython 3.14Windows x86-64

ultrasound_rawdata_exchange-1.3.1-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.1-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.1-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

ultrasound_rawdata_exchange-1.3.1-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.1-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.1-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

ultrasound_rawdata_exchange-1.3.1-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.1-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.1-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

ultrasound_rawdata_exchange-1.3.1-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.1-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.1-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

ultrasound_rawdata_exchange-1.3.1-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.1-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.1-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

ultrasound_rawdata_exchange-1.3.1-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.1-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.1-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

ultrasound_rawdata_exchange-1.3.1-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.1-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.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 47404ccf9d2ef0e9a55b41110590ec9b2e76ea52b361f0414e2986db0779cab1
MD5 50080068f9aa9b301f572046cdbb9df5
BLAKE2b-256 69d77a7c037af7ed7ec6ec69f3c64438110b5988acb6d3f98128fe9009e64e07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a59ade418f30024b58d3cd67607bce59c35acebb04cb33f227e3c4dc105e67e0
MD5 7bfc904fc12638920df36c8c1e33c745
BLAKE2b-256 1de0c5e5a1636108e728ffc09ac9169a3cae617f4e473a126c7e0cd529c4267f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f4bfcb2ab910fa820836470b3e412ea2684b101b9c54c950f82f5a95dda12862
MD5 c260ea92697d73d13843631b9d8db4bc
BLAKE2b-256 8b35e677e5cad1953c0dd827ef2767a1475c4925737d6ffe7293ebb97a213f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 766b631604dc2a09a2e225469c2762e0333d256d33f06881296c24c591ec53a0
MD5 04f06d2064159e0f455a779f797389c4
BLAKE2b-256 93bb8db5b32b3e558ba34154a99f3e998cb7186914f8f61f0a07d0c4d68d4d61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 49bedc0ec73bf55850fc659f9c8e8d471b9aa4cf1abacdd088234dcccde5e9d7
MD5 d3b0576ae36453a34fdfeea585ddc3f5
BLAKE2b-256 9b3060bab5790d10ab5c7965fdb6b37493e75b8181989be16e983863843e3865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d767fcf6f7000f3763002def12ae4433dea09a504194734da16ef3a80d93ce21
MD5 fd9b47da5702f8f66fe28d0e1f986caa
BLAKE2b-256 2527570c52803d543b5cd9bbad8c38ee5e720569207b4b40a6d6132f3172c56f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2aae1c8096d87d93fee1361960525361166a6166915be753956b753fde590d10
MD5 2b974d1fc329c285be13941621db9eca
BLAKE2b-256 1d71ae18c98c8c9f529232920a19b479e710cdf9820d7f07d0a87be1e5a3bc63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bec2234ad3b16b1d2d1180ca89f6a0f0b863f3dd231c7ac5f6cc9ef36674e9ba
MD5 9860415c838518b7019c4c5b722153b3
BLAKE2b-256 26a43b44ff005da5f9e389a894dd340e664c0726b65c3730412ed58c69fb5eb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c4daed838a4fc4e4b349ccac1a1cf543101457ff68d7523dcfba42d73876bb0b
MD5 2680e4f2b350d04c2352c37c703df44b
BLAKE2b-256 0930fc33b39a6ac0d6d2034466df393c21e8a84b960a6a01ab98ca95cbf041e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83bd52f61999c4548aab07809b45d57ab996d82f0c2cff6f69715aac6def5172
MD5 eb03c5e1c6da3d141f1271fc1b04ff1a
BLAKE2b-256 a4776e1e6f11c51085482be0943953940d10aa5d5cd3cbf0ec50950ab20db95e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 18c10627757662e402d1ad14017d38cf89b08d7f12632294e9eb224be148aa0f
MD5 6cdb00509bfca970954ab1ded4593cc8
BLAKE2b-256 4ebea24f392edf03a663d863b0062cf0dadd0f5e4b55aabe3ff5f4a21d982141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 755a386ae47800ed5d10fd4438987d34157fef4a47b4207f26ec7baf0fad96a6
MD5 aff623d7eb513f955a79bc720fb135d9
BLAKE2b-256 f6687664df1155abc49c5a0bdc3b92aa49683acdea481b16ce085e07f11bf3c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 332bff7a074bafbaf6b6b844e2bceaf8cb0189473951360df477fa1989c25f9b
MD5 c598e22b918a3602b554fe2f63d54e4a
BLAKE2b-256 0c135bfa3c2bd45720e23bb33124bc2c2fb7baaed87bb7833fd45974902e162d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1648ce580856f0bcd25aeb4857b6bd545eb93618e98397a6e5f32c6980a63795
MD5 c5139cae1b69f9b96730a59677c0f6fd
BLAKE2b-256 91ee36164fc8ef960e703f541215f8afeb374f88f9a042c39258cf49f7cfe4ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 835d7cbcd1d6727b120126857aa717bb684ee98ea6e8b445cb28d1d15ee07398
MD5 2e5e42eba5bfd0f88ab5870ba0d48c64
BLAKE2b-256 2bb00f4486e0801460f71d7be39b45ddad59b101dbbec8c4d15f9053f98652e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98e6d3c4ab2c7bb9ee99860740548097598dca4a351398f650ac8abdcec4b485
MD5 4a0b3909141fe01b4561e13ad4c7e04a
BLAKE2b-256 6107c301da4c7d9c93d196c1552140be57d7c814923ada253424dd6937959ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2df244ce3d7a52e075e09e1b7c9645550ed412cf09848ed0e451a80738076121
MD5 1c50d524dc13d296702cffb3dd11fbd1
BLAKE2b-256 976c408ba57dc806a8c2e73f7042a59ee8a523c00b3944591c755c0b0e59a392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a59ff099a49c1bf03ccc5e006aacbfdcb2c075ab01456cd8c4e01c3daa53d9f7
MD5 9c87b7de6934672848ed860869f638bf
BLAKE2b-256 6ca01918731b08ab49c0bf2ce1505b2c2ec718ecbc0b7cd5814856f9ca0fb3e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 356b618a1b973edc5cbfa356529483be5adbb086d5e1db15cd1ae39f9a5f63a4
MD5 ccc56ba8509a311ab34811c4d3633177
BLAKE2b-256 5714145f7c84efcb3f0f84c0a8815dc2a14281990359aea12465a77ea82519e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 32ca144eead499db53061122382840ef3d4d9db8fffe109ecbfd061eb2c4be81
MD5 d8d1df0cc62162f7934685f99d04c786
BLAKE2b-256 03a3dda70cae00bdfb16c562260d946eabb5341a083daa729b057bd1018cf356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9cc75573c55c9ab118608710e2d59473da666c8e1b3d4d77e2c8f54724191a53
MD5 6d825604f174957eb8f56e253266f316
BLAKE2b-256 c8c11cb308af94292e959c7dfcda5b4099b89b57c76a8066719d0bf0806d709a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff73c457e19a6b4966e3ea30ebc98372f8c3dddca9f37fd4970e95a826dc8625
MD5 3f070621eadf586f9ee909d5d0830163
BLAKE2b-256 699b42db251ed99d7e9accf6ccb06325cfcda89a39c7b6d98aff57e0c596cfed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2a9e6be4c5d9d11090a104caa0ac0e291fbec1450f462644f070b03dd56d5b69
MD5 cb94e27b4333063e015a2ede093c3db7
BLAKE2b-256 1f12865ee3e0d005477ac8eb9dc569397fb25f0043d14acbe6e2da1aa92e1256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b20fa06eaf2d6741e0d77ebbf824749a3b9f13237a76e5da56908ea4c0b9c765
MD5 3b945cb8111db6be4fdd2591064acf71
BLAKE2b-256 86f85ed6f468bdbbef90388a7192dc541750fcd51280ebfe7fd017f18c8661d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c033cc5fddda3ec177c03b0fcb1da6f6b1e20b85faf77583d5a2768bcc54ac5e
MD5 b0c2e55b09fb6136b035a137cf37e4fc
BLAKE2b-256 2349e69d01bcb6acafbc744ac2b09557a7cc8c56f9fbd7846328d3f0288f1bf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 965bf80afe8fba016535af889e9ec481691bf1b08947a50b012ac7aa39331520
MD5 67a32eb73935c35512b337a6735634e5
BLAKE2b-256 537214a1dc21bca7f396e9ba02b04479baae8e7aa0642b66773c40003cf8e46a

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