scikit-surgeryultrasonix 0.1.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

scikitsurgeryultrasonix 0.1.1

scikit-surgeryultrasonix
Python bindings for Ultrasonix machine.
Only works on Windows with 32-bit version of Python.
Tested with Python 3.7.
Prerequisites
You must have the Ulterius SDK on your local machine, and add the bin folder to your system path.
If sdk is in C:\Ulterius\sdk_612\bin
In Windows CMD
set PATH=%PATH%;C:\Ulterius\sdk_612\bin
In Git Bash
export PATH=$PATH:/c/Ulterius/sdk_612/bin
Example Usage
import sksurgeryultrasonix
import numpy as np
import cv2

ip = "128.16.0.3" # This is the IP address of the Ultrasonix

U = sksurgeryultrasonix.Ultrasonix.CreateInstance()
U.connect_to_host(ip)

while True:

frame = U.get_frame() # Returns numpy array
frame = frame.reshape(480,640)
cv2.imshow('x',x)
cv2.waitKey(1)

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.