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

Uploaded PyPyWindows x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPyWindows x86-64

ultrasound_rawdata_exchange-1.4.0-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.8Windows x86-64

ultrasound_rawdata_exchange-1.4.0-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.4.0-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.4.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e19782dd61c632798c3c341eff6e72b34453b2573c6c6242c9c6075e57d748c0
MD5 a50ebcb54a31285997b440c90fcf4b7d
BLAKE2b-256 2020a99d8ee2cd5fc83841967f36d2b105948ac31fd763eb1b0f7d94405508a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ac7cfc5303a674afb18a231522fc5942a5b7c037019d03e719cecc17feb9e072
MD5 2230d4f6ca98473f25dd82e1e0fc0ec1
BLAKE2b-256 7f7c0741c4752f8dbe7c132376d1754735edb48eba1b3877407d4e60a5557997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 81305680176dc0c4650b04b9f0a2c797fda18932ef26b914c22bbe9103849417
MD5 1f626f8ff822b89cca9614de59c42896
BLAKE2b-256 1304cf9c12ec8c8759b7286624ab6e494ad29052b5a6f03828ad0c12aa229409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5bc6037cfa0a3ea840b27a8cd022b21b4fb34401fc0ba70c6b3d55707398d896
MD5 a09bfa2584ca558036a24e0031e1cd1b
BLAKE2b-256 48f4a4a9cd6be96b5af32b74d383d2632e1db466dfd0d51c3de9a1e2b38b7f2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fa0003ec256798259566b41f73f4bafd3aed7c0aa95a703e7883dcc53c1d976a
MD5 6a1158f3641e67ed8b9c2dc9f5041406
BLAKE2b-256 9042797d18b917081496f10163c0ef1f2bfc6a6e96b59fdb97986036c6e20bab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8250e215c60b858317089d5efea6f71ebca2290c5903f32606e706c853888127
MD5 178c5dc8b0780faaa7eb529b4bc2895c
BLAKE2b-256 52c01176393e6d07ca9e957363888218726d67a7cadc321f5fca1bb015696848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1500e1357ff9bba8e42887d99b152006fe69586550a43ee5ead54f568dafaf48
MD5 5ff6461003bd986c5225b13bab4d8562
BLAKE2b-256 d45d2adea145aec5548a00045e31dc2ba836f3272e6ac421c31ec13d9e2aa480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f3157709541feaaa82dc5527719152c3c70714139bee43e5408d33ab8780c01c
MD5 a96f0de37ed46132dbc21eef30cbd26c
BLAKE2b-256 4a1ce8e27be22878215481d1fe12bf2b12b1747c77fd91903b78be8b2941b6c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b27f8f695898fb5cce06c21fb684a042469a4d0cbe16e97a39695fe636f79744
MD5 6bdb5c3b1c78b5aa0db533f68d5c634f
BLAKE2b-256 80ed7e1372693deedd5b4877d5f57acfdedf30c408cd6f24b3908d2c57cc6c7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7958bb0f1546f6e382b58fd6952f80f59c2d68b9e40df4b4e7a27fb3a7476262
MD5 eb3ebd53f61cad57eed438c6d1d42d81
BLAKE2b-256 b5787a2577b6d378fd00ab45eb611092d6924b51ca7d9c4cac87861b08bd2627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e0f26661fe352c1a362e95babb5c8fb87b72d40302d2fec8722d560aaacd9f0f
MD5 38ce45db2fdcdbc8900b1fa38c42758e
BLAKE2b-256 59b6a1823a870feca38f4de2c25990452f7a07ab201eee805b441e9cf6e3a132

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d9d0833318a1f81ae581bcd3e777782963b75d2e0343e8b05464d460369ae0a2
MD5 3bb7bc1839d6a20c8e3f7b0f43972362
BLAKE2b-256 9a43e058f6373fbbc59c8429056b5e3084acc90ce6cfcce0c742b54414161b6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 947ec1524d70de0080f8c4248323e22dd406fb739f4add1ccd97581417cf687a
MD5 f3f028d97ee25985e240f680ff747820
BLAKE2b-256 b0684ef373e2977266ac378af48eaa3b0eee8f03f79d1f0cbd95554c34d7e63a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3000b52ad8642f1403e440cdc969ab46efd76fd50ef20aaa8f53fec82648991c
MD5 3e21feabe7b44bf6c61adeea5753287b
BLAKE2b-256 5a11a0f21c8759a1f1903878a25d0ba70dc52ed1c5b71436b2dc6c90816323d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 af23836b97cb0794e513f70629e9d0a51c60b7d41adf990e3ca6c833edce2d98
MD5 f1dd4a8777ec4f01b2d7b4c3ae30950a
BLAKE2b-256 83cd56d682f3d15be46da5ec927a8c04a43194a2da674dcda0c69e6aafad9367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f6e042ac886470b7eb0c5175ccb5fe4c16ced15c113c2952886530063f0a617
MD5 a89133d183fe2e3b22efcd271f4b05e4
BLAKE2b-256 4328a5ba2be52616435d2553920398d4674ebdc7abb6cb2d5748279ef7a2fe81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cf17c405eda98f9d2f23756b5e267711aba74cb859e4333607f3d9cc2bc978d6
MD5 7b169e14440f2ce5913a38d6c0db7a6a
BLAKE2b-256 7c57c258f278716d67a16bc077fe46bb88cc271743fb3e0e04df4e063dd72743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d210d3f46d4b5bc1458967e0c4e6b0c9a0ac6b5da66b0759f2ae5f2596b95d47
MD5 406443920fff3d5dd5871b7c09bec0d6
BLAKE2b-256 dddc779737efa2506884af6a874585fc77170e4d844fa4f75287e0b0c1a0a49f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4d1aeea6ea730ae0ff75d134c5cb54f26148d73ab4e72566c99817e05aaf906
MD5 3d5a93a73ee124e9cd7b2a8adf9043ca
BLAKE2b-256 1c6460747fc181008e062cad24c40ccb0bc42e70163334ced935a3bf06472cd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0aa6b7aa54dd287a15b06e8829e4770670266a2e68de2c1d1afa2257226fde72
MD5 33fb6c7a86224a8d86e0530c7218b2f3
BLAKE2b-256 09841fda042fcab9c35e6df450831a2577f67b383f001095c078ddb76709da4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8dfb0ae35225208834398e71174675707aec1387648495328bda98bd726589ea
MD5 917990bbea4728a0a1ea1124b52fbe2e
BLAKE2b-256 8678b57b7b2297763271efa5092fd76ef758bbd7dc8647b5d0d709415ea00285

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 912e6411da1715df5644c71d449eb09297b6b36eacb5bc6a10dcac629c8cb56b
MD5 cfe6c441d9ff4ddb4a5c141167088168
BLAKE2b-256 6f56919b82adb6107123b5dd9dc2ecd29e61d429fc934afb7b8b427edb9de2ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cd4630894c42199e68ea55ddc8e1f113bd6076df5b0a5d27c582fe3e33742c95
MD5 77daca0985fe97410f908063f1d4d84c
BLAKE2b-256 a0722e6703d2b0172f4205d581c0fed90e6db6485634e043624619f8b33ade54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 06b254b6387a697433871199df35da47a4935496e82f47f8705a69c90b231a6d
MD5 d4bb3242460d0e82e163085401c1d392
BLAKE2b-256 ae527e6b980765caecaee1ab76c97b042e733d1acc7ae0bfd9a19d9bc73fa283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40ea6af8b175c3ac055083ba3ca87f97ee4b4284740c7d9bdcada58daaea2a1b
MD5 30bf61b65cb45c04bba8315aaa0aa73d
BLAKE2b-256 4ffd236d073600e0097ab6c1894a0c247605d998b52e01ed2899c7eb115069bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.4.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 fb4a478b277c25e248f30763370be3c2dff032e13fd0cf81fb717bf1af68cd58
MD5 fdbfd73bd9b085709927974c798fbe27
BLAKE2b-256 01c8ec293010d9eb843be9cf21c51ecd52ed0fc858a9652dc2185644c2df41e9

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