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

Uploaded PyPyWindows x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14Windows x86-64

ultrasound_rawdata_exchange-1.3.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.3.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.3.0-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

ultrasound_rawdata_exchange-1.3.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.3.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.3.0-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

ultrasound_rawdata_exchange-1.3.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.3.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.3.0-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

ultrasound_rawdata_exchange-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10Windows x86-64

ultrasound_rawdata_exchange-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ultrasound_rawdata_exchange-1.3.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.3.0-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

ultrasound_rawdata_exchange-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8Windows x86-64

ultrasound_rawdata_exchange-1.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ultrasound_rawdata_exchange-1.3.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.3.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 41b6a26cc1c2c4f49923a372eb82a6d0af1d82a2a4fafb24b263abb0651fbd07
MD5 51afd8ffddfdcbcb50781c60df345f68
BLAKE2b-256 31c668e0164154dda5db9262daf6d007996b6d19cf13768ac6d0f8678e9367fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 457014885505a72b7ff7070f85da6d41c580a56a750fcb358c8ca817e3488c6e
MD5 79d7990e74c35f8602c9332b87c441e6
BLAKE2b-256 0799e12ab4915ae7b0e38c69176399c3d5f8a8fa692086e636d80d5936422955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7ed767722d174c5e8eafac783560920a8527e167107e7cac7bf46332dd546c68
MD5 b9c56515ede4dd1869d6a0603f943705
BLAKE2b-256 b2d9117eb19db03227442280662ca0e1d6913182c4da6804277e3e0d9c338d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 99db66573f385058cf457843d328d03d9b1df13a8f50fbab26f71304f0dd357b
MD5 489450dca3c4351bfeca2763d848750c
BLAKE2b-256 f315eaf5b720086324875835a3417c3daa370c28fb4d57506329ff8d1cd35fe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9d53d8264485ba23e19d961adfd700a02e358003d28815871f9afd3b943ba087
MD5 ba162e5d5465ce2d25a1d167eff9229e
BLAKE2b-256 ffb845210eebea605ab72f3da5c57c05a433aed3ae9a46f86c7c70adabd1b7fa

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6b8b1491465fc74654719541b32e3d833027c71fb133ca80cc020a11f1838dcb
MD5 35ca1517351cbfa8702684334e69237a
BLAKE2b-256 fce356d6b99c35c2bf991da0a39869f7e3de5dcac54445557495b812a6ec6a97

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eed19d523a26c91c0366e944685c53e6db6eb81a5d8ff0cc176b5ec96466d76f
MD5 539ea1e5b979ebd6965b4c1911cb090e
BLAKE2b-256 7cfb32d6d362a1b46b80cb94ee36aa9dca0bbe8448faaa4c3272a246507e1150

See more details on using hashes here.

File details

Details for the file ultrasound_rawdata_exchange-1.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 109304b9a4b562c6d1114d6e023c6785003a11011ae2607cc21c0bdccad01ead
MD5 ac608174cf52f4721c955f1addc90f6c
BLAKE2b-256 ac0b55d135d2c76aa943b3f88c6af477b8c0dd945a7d8a43b265783713604d4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0c88ab512350383afdc0008bb917ce5d4a7944dffb65ea5ec2361f8b7bef3d57
MD5 19cb66cd369d0ff893f788431fe37c57
BLAKE2b-256 75131a412f974ecc1be77eef4c8d60c075521e1e892178bdfc28210fa1af969f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 290dcd805a21f583fca0c5870ddbbc43bb24738f781432f927e289ecd4913437
MD5 58abc4f2d53ea9059290edacce0a60df
BLAKE2b-256 2129d4b78c9b213f7ddb374062a13f50ff6be98aa68402d94a6521370d233ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 844586ec7334f36ac4bc1595e5c44ddb88ad815fbb92a190735b9f43e8d9a7b3
MD5 000cf328f9be9143fcb4a0210ac6184b
BLAKE2b-256 205f6351b290c4c989e7529998775ed18d54fa1e0cf187e7b629f2a89de1934a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 800f48386201704061cf4138e8018a3c86e69805f359f548520d5e9d52eb7493
MD5 2ff0bfe842cd7252e3dcaf4e17205218
BLAKE2b-256 490ae3b56b8e1e53bdf0a9cdfdab2a1516df23dc18df18e681a3350a3d0344ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ec96ff24291bdbd9ac05df9ec9baeb3eed9b242b48dd4a2625370dbb42401a7
MD5 4f1c426e3dd7823e475d24b034e4c777
BLAKE2b-256 2710d5c413110febacf8441e1b9e58b172f755575874a421def413edb3ea1e19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ed9b099e053e2974ffddd174224cc11fd0dfc985f8a240533e136f0b710b6cd2
MD5 c47445e67ac54e1317d2ab1c31c8c14b
BLAKE2b-256 597b28556b68a19bb0a1227128b5c5d197d9be8ed2a3365cfe502080db6343f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ccb1805507eaeb228397647c476e05706bb55736cf8646af9895edf731851028
MD5 f1c278ca35399789ffee110b1df5935b
BLAKE2b-256 178fee3cd1ec1099976cbe6c4288c151ac457cb5ab2a0ba61685c5b508c0807c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de865f5e1d67e89c61885ed479f9416909510ffef5967a28970417d5284f22ad
MD5 4e123f73067a0797d20a8552b39c2263
BLAKE2b-256 0046da0a4d37bc214c098fe70d97933355fd7417047552815055d24f2642361a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0a26a7479a5151ad7723dabe60428f99aaac94c6a80a9a75567b6d5ab3518a72
MD5 6b1bc15c9e0e2379c8ac5ddb6a170eab
BLAKE2b-256 5581c85059a5d42312d4b9e663543231e4a62dd2df5724fd79c0664928965cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2645d9baabae1038ffb9d50bcfcbe32506e0656fc4b7b68eb4f9e8e192824030
MD5 35ceadfa72e4483590944802d043c2c4
BLAKE2b-256 dfbbf036568bb08de779ab004dee72cfac51843abc3d4ab416b71a539686dcd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6805cb63fbc639629d7fe40da3eda59d8fc6325a918d58dac45a218b5cbfe3bc
MD5 5a244eab208285cacf520febe803d88f
BLAKE2b-256 f00796b338e4864a6acc610310c6889e1b5352507a201371b5af206316f6f88a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 546322fd529c95d31eff490eeb6d50068a716c3686437110cf73a0935f720347
MD5 9381e6d2deff45b126da3f4517022796
BLAKE2b-256 7c8ab8f0eefc59ca061e2efd84aed8d8fbc9c61441ef36c94581360634b91499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb9358e1cf6d2bace76135a9d120d96751e991f9a464e949d3e1324430272718
MD5 5987b6c40ca4852d94559eb29fcfa439
BLAKE2b-256 9aee15195de3ae553205dc87ae82d6ba41186b3c187153958c091c5f0fdf4e03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 459ae904f381113ec09f081b95afbfb9043c6e8c05822a59ad74ecd8a58bf70c
MD5 71c8fdf6aeb271a5f1fef1374f87ccbe
BLAKE2b-256 4809ee5213b44b9004b35359badcffd759ce7e532ed56feda1619d7c769a0c89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 64998bfc0053a8b4de41cc48149df592b0aafde17f9cf3482ee165ad06145af5
MD5 dc02120192a3b3f17d868772637fd9e8
BLAKE2b-256 25631f3b6a6374c0325d18b9c8371de0465c1d196ede564a7ad62c6568ac5011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a60d5bbca78dce27f0209e084a3b67a2d8c26c1c4a87d0fdd73cc3c72d900ae5
MD5 b432f99893b39fc42ee1de3bf2d62ca8
BLAKE2b-256 f5d2dceca320fd21f3f7fdce73fa67af0586da48639484befa13799f21746735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80a71609dee8e1927d0c5cb1625a126e57fd849f6ee06e5321eaa0083f234cd3
MD5 1ac2ea604128668f1b1c1b0037467cf9
BLAKE2b-256 673ac4d7d3fb9a4dda6d70c5632c9aaac65ed382fe90f7a06221395eaa840a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f89e87cef2ce1dd2560d34db3626c31cf468e3e806edb8e98a429e03b4cc991f
MD5 662cff0439337f0e5e27d65c42f51dc3
BLAKE2b-256 5926153171e79fc77d70ebc7c99686120dc55c3e52335bc659bdeab505705f7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f20179fde2d56e1a823102737f59d355d54fc71a34b35263adacafedee7fef80
MD5 c560e89b60d6b0a36879353ac2ec6877
BLAKE2b-256 72bfd82e43751b4c88cca778cdbdce96f932208caed3bbc9f44c91bc381e763b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73b40cb2eccbec6be6f678bac13616cb84df2913ffe8429be07dae029b5bbee1
MD5 e547f53b5c038c51f6ad199ec62c6df5
BLAKE2b-256 be9d4be84b5902429a3d41022391463f94b65578e7cefa3f617bdcd2d838c23b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ultrasound_rawdata_exchange-1.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bef9c4ae90fb240e07606d8d590080c87fb7bacf2925994f68109c83d05b55d6
MD5 076149b3a77d8235a297f2a96a5d3c9a
BLAKE2b-256 6affd066df745ce02e987f8ad184e54bf9c58aadc9104de4eb286ff069c0b32e

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