BQAPI Services
Image Service
The image service has the following endpoints:
API for Operations on an Image
Returns an image in specified ROI
GET
/image_service/operations/roi
Query Parameters
roi*
x1,y1,x2,y2[;x1,y1,x2,y2]
All values are in ranges
[1..N]
Adjust brightness and contrast in an image
GET
/image_service/operations/brightnesscontrast
Query Parameters
brightnesscontrast*
[-100,100]
brightnesscontrast=brightness,contrast both in range [-100,100]
Returns a 2D texture atlas image for a given 3D input
GET
/image_service/operations/textureatlas
Query Parameters
textureatlas
String
Returns a transformed image
GET
/image_service/operations/transform
transform=fourier|chebyshev|wavelet|radon|edge|wndchrmcolor|rgb2hsv|hsv2rgb|superpixels
Query Parameters
transform*
String
Returns a histogram of an image
GET
/image_service/operations/histogram
Query Parameters
histogram
String
Returns an RGB/Gray image with the requested channel fusion
GET
/image_service/operations/fuse
arg=[W1R,W1G,W1B;W2R,W2G,W2B;...[:METHOD]][display][gray]
Query Parameters
fuse
String
Returns a maximum intensity projection image
GET
/image_service/operations/intensityprojection
Query Parameters
intensityprojection*
String
intensityprojection=max|min
Table Service
Executes operations for a given table ID.
GET
https://bisque2.ece.ucsb.edu/table
Typically used for getting slice from HDF5 data.
Example A numpy
array stored in an HDF5 that is too big to load into memory on a Macbook. We only want to process chunks of the data at a time.
Query Parameters
id*
String
/table//ID[/PATH1/PATH2/...][/RANGE][/COMMAND:PARS]
Last updated