|
|
|
|
@@ -40,6 +40,8 @@ Method | HTTP request | Description
|
|
|
|
|
[**fpga_status_get**](DefaultApi.md#fpga_status_get) | **GET** /fpga_status | Get status of FPGA devices
|
|
|
|
|
[**image_buffer_clear_post**](DefaultApi.md#image_buffer_clear_post) | **POST** /image_buffer/clear | Clear image buffer
|
|
|
|
|
[**image_buffer_image_cbor_get**](DefaultApi.md#image_buffer_image_cbor_get) | **GET** /image_buffer/image.cbor | Get image message in CBOR format
|
|
|
|
|
[**image_buffer_image_jpeg_get**](DefaultApi.md#image_buffer_image_jpeg_get) | **GET** /image_buffer/image.jpeg | Get preview image in JPEG format using custom settings
|
|
|
|
|
[**image_buffer_image_tiff_get**](DefaultApi.md#image_buffer_image_tiff_get) | **GET** /image_buffer/image.tiff | Get preview image in TIFF format
|
|
|
|
|
[**image_buffer_start_cbor_get**](DefaultApi.md#image_buffer_start_cbor_get) | **GET** /image_buffer/start.cbor | Get Start message in CBOR format
|
|
|
|
|
[**image_buffer_status_get**](DefaultApi.md#image_buffer_status_get) | **GET** /image_buffer/status | Get status of the image buffers
|
|
|
|
|
[**initialize_post**](DefaultApi.md#initialize_post) | **POST** /initialize | Initialize detector and data acquisition
|
|
|
|
|
@@ -55,6 +57,7 @@ Method | HTTP request | Description
|
|
|
|
|
[**plot_packets_received_get**](DefaultApi.md#plot_packets_received_get) | **GET** /plot/packets_received | Generate plot with number of received packets per image
|
|
|
|
|
[**plot_receiver_delay_get**](DefaultApi.md#plot_receiver_delay_get) | **GET** /plot/receiver_delay | Generate receiver delay plot
|
|
|
|
|
[**plot_receiver_free_send_buffers_get**](DefaultApi.md#plot_receiver_free_send_buffers_get) | **GET** /plot/receiver_free_send_buffers | Generate receiver free send buffer plot
|
|
|
|
|
[**plot_resolution_estimate_get**](DefaultApi.md#plot_resolution_estimate_get) | **GET** /plot/resolution_estimate | Generate resolution estimate plot
|
|
|
|
|
[**plot_roi_max_count_get**](DefaultApi.md#plot_roi_max_count_get) | **GET** /plot/roi_max_count | Generate plot of ROI max count
|
|
|
|
|
[**plot_roi_mean_get**](DefaultApi.md#plot_roi_mean_get) | **GET** /plot/roi_mean | Generate plot of ROI mean value
|
|
|
|
|
[**plot_roi_sum_get**](DefaultApi.md#plot_roi_sum_get) | **GET** /plot/roi_sum | Generate ROI sum plot
|
|
|
|
|
@@ -63,10 +66,6 @@ Method | HTTP request | Description
|
|
|
|
|
[**plot_roi_y_get**](DefaultApi.md#plot_roi_y_get) | **GET** /plot/roi_y | Generate plot of ROI weighted Y-coordinate
|
|
|
|
|
[**plot_spot_count_get**](DefaultApi.md#plot_spot_count_get) | **GET** /plot/spot_count | Generate spot count plot
|
|
|
|
|
[**plot_strong_pixel_get**](DefaultApi.md#plot_strong_pixel_get) | **GET** /plot/strong_pixel | Generate strong pixels plot
|
|
|
|
|
[**preview_calibration_tiff_get**](DefaultApi.md#preview_calibration_tiff_get) | **GET** /preview/calibration.tiff | Get last preview image in TIFF format for calibration with PyFAI/Dioptas
|
|
|
|
|
[**preview_image_jpeg_get**](DefaultApi.md#preview_image_jpeg_get) | **GET** /preview/image.jpeg | Get last preview image in JPEG format using default settings
|
|
|
|
|
[**preview_image_jpeg_post**](DefaultApi.md#preview_image_jpeg_post) | **POST** /preview/image.jpeg | Get last preview image in JPEG format using custom settings
|
|
|
|
|
[**preview_image_tiff_get**](DefaultApi.md#preview_image_tiff_get) | **GET** /preview/image.tiff | Get last preview image in TIFF format
|
|
|
|
|
[**preview_pedestal_tiff_get**](DefaultApi.md#preview_pedestal_tiff_get) | **GET** /preview/pedestal.tiff | Get pedestal in TIFF format
|
|
|
|
|
[**start_post**](DefaultApi.md#start_post) | **POST** /start | Start detector
|
|
|
|
|
[**statistics_calibration_get**](DefaultApi.md#statistics_calibration_get) | **GET** /statistics/calibration | Get calibration statistics
|
|
|
|
|
@@ -2349,7 +2348,7 @@ No authorization required
|
|
|
|
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
|
|
|
|
|
|
|
|
# **image_buffer_image_cbor_get**
|
|
|
|
|
> bytearray image_buffer_image_cbor_get(image_number=image_number)
|
|
|
|
|
> bytearray image_buffer_image_cbor_get(id=id)
|
|
|
|
|
|
|
|
|
|
Get image message in CBOR format
|
|
|
|
|
|
|
|
|
|
@@ -2374,11 +2373,11 @@ configuration = jfjoch_client.Configuration(
|
|
|
|
|
with jfjoch_client.ApiClient(configuration) as api_client:
|
|
|
|
|
# Create an instance of the API class
|
|
|
|
|
api_instance = jfjoch_client.DefaultApi(api_client)
|
|
|
|
|
image_number = 56 # int | Image number. If omitted, the image with the highest number in the image buffer will be provided. (optional)
|
|
|
|
|
id = -1 # int | Image ID in the image buffer. Special values: -1 - last image in the buffer, -2: last indexed image in the buffer (optional) (default to -1)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
# Get image message in CBOR format
|
|
|
|
|
api_response = api_instance.image_buffer_image_cbor_get(image_number=image_number)
|
|
|
|
|
api_response = api_instance.image_buffer_image_cbor_get(id=id)
|
|
|
|
|
print("The response of DefaultApi->image_buffer_image_cbor_get:\n")
|
|
|
|
|
pprint(api_response)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
@@ -2392,7 +2391,7 @@ with jfjoch_client.ApiClient(configuration) as api_client:
|
|
|
|
|
|
|
|
|
|
Name | Type | Description | Notes
|
|
|
|
|
------------- | ------------- | ------------- | -------------
|
|
|
|
|
**image_number** | **int**| Image number. If omitted, the image with the highest number in the image buffer will be provided. | [optional]
|
|
|
|
|
**id** | **int**| Image ID in the image buffer. Special values: -1 - last image in the buffer, -2: last indexed image in the buffer | [optional] [default to -1]
|
|
|
|
|
|
|
|
|
|
### Return type
|
|
|
|
|
|
|
|
|
|
@@ -2417,6 +2416,154 @@ No authorization required
|
|
|
|
|
|
|
|
|
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
|
|
|
|
|
|
|
|
# **image_buffer_image_jpeg_get**
|
|
|
|
|
> bytearray image_buffer_image_jpeg_get(id=id, show_user_mask=show_user_mask, show_roi=show_roi, show_spots=show_spots, saturation=saturation, jpeg_quality=jpeg_quality, show_res_ring=show_res_ring, color=color)
|
|
|
|
|
|
|
|
|
|
Get preview image in JPEG format using custom settings
|
|
|
|
|
|
|
|
|
|
### Example
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
import jfjoch_client
|
|
|
|
|
from jfjoch_client.rest import ApiException
|
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
|
|
# Defining the host is optional and defaults to http://localhost:5232
|
|
|
|
|
# See configuration.py for a list of all supported configuration parameters.
|
|
|
|
|
configuration = jfjoch_client.Configuration(
|
|
|
|
|
host = "http://localhost:5232"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Enter a context with an instance of the API client
|
|
|
|
|
with jfjoch_client.ApiClient(configuration) as api_client:
|
|
|
|
|
# Create an instance of the API class
|
|
|
|
|
api_instance = jfjoch_client.DefaultApi(api_client)
|
|
|
|
|
id = -1 # int | Image ID in the image buffer. Special values: -1 - last image in the buffer, -2: last indexed image in the buffer (optional) (default to -1)
|
|
|
|
|
show_user_mask = False # bool | Show user mask (optional) (default to False)
|
|
|
|
|
show_roi = False # bool | Show ROI areas on the image (optional) (default to False)
|
|
|
|
|
show_spots = True # bool | Show spot finding results on the image (optional) (default to True)
|
|
|
|
|
saturation = 56 # int | Saturation value to set contrast in the preview image (optional)
|
|
|
|
|
jpeg_quality = 100 # int | Quality of JPEG image (100 - highest; 0 - lowest) (optional) (default to 100)
|
|
|
|
|
show_res_ring = 0.1 # float | Show resolution ring, provided in Angstrom (optional) (default to 0.1)
|
|
|
|
|
color = indigo # str | Color scale for preview image: 0 - indigo, 1 - viridis, 2 - B/W, 3 - heat (optional) (default to indigo)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
# Get preview image in JPEG format using custom settings
|
|
|
|
|
api_response = api_instance.image_buffer_image_jpeg_get(id=id, show_user_mask=show_user_mask, show_roi=show_roi, show_spots=show_spots, saturation=saturation, jpeg_quality=jpeg_quality, show_res_ring=show_res_ring, color=color)
|
|
|
|
|
print("The response of DefaultApi->image_buffer_image_jpeg_get:\n")
|
|
|
|
|
pprint(api_response)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
print("Exception when calling DefaultApi->image_buffer_image_jpeg_get: %s\n" % e)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name | Type | Description | Notes
|
|
|
|
|
------------- | ------------- | ------------- | -------------
|
|
|
|
|
**id** | **int**| Image ID in the image buffer. Special values: -1 - last image in the buffer, -2: last indexed image in the buffer | [optional] [default to -1]
|
|
|
|
|
**show_user_mask** | **bool**| Show user mask | [optional] [default to False]
|
|
|
|
|
**show_roi** | **bool**| Show ROI areas on the image | [optional] [default to False]
|
|
|
|
|
**show_spots** | **bool**| Show spot finding results on the image | [optional] [default to True]
|
|
|
|
|
**saturation** | **int**| Saturation value to set contrast in the preview image | [optional]
|
|
|
|
|
**jpeg_quality** | **int**| Quality of JPEG image (100 - highest; 0 - lowest) | [optional] [default to 100]
|
|
|
|
|
**show_res_ring** | **float**| Show resolution ring, provided in Angstrom | [optional] [default to 0.1]
|
|
|
|
|
**color** | **str**| Color scale for preview image: 0 - indigo, 1 - viridis, 2 - B/W, 3 - heat | [optional] [default to indigo]
|
|
|
|
|
|
|
|
|
|
### Return type
|
|
|
|
|
|
|
|
|
|
**bytearray**
|
|
|
|
|
|
|
|
|
|
### Authorization
|
|
|
|
|
|
|
|
|
|
No authorization required
|
|
|
|
|
|
|
|
|
|
### HTTP request headers
|
|
|
|
|
|
|
|
|
|
- **Content-Type**: Not defined
|
|
|
|
|
- **Accept**: image/jpeg, text/plain, application/json
|
|
|
|
|
|
|
|
|
|
### HTTP response details
|
|
|
|
|
|
|
|
|
|
| Status code | Description | Response headers |
|
|
|
|
|
|-------------|-------------|------------------|
|
|
|
|
|
**200** | Preview image | - |
|
|
|
|
|
**404** | Image not present in the buffer - either not yet measured or already replaced by a next image. | - |
|
|
|
|
|
**400** | Input parsing or validation error | - |
|
|
|
|
|
**500** | Error within Jungfraujoch code - see output message. | - |
|
|
|
|
|
|
|
|
|
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
|
|
|
|
|
|
|
|
# **image_buffer_image_tiff_get**
|
|
|
|
|
> bytearray image_buffer_image_tiff_get(id=id)
|
|
|
|
|
|
|
|
|
|
Get preview image in TIFF format
|
|
|
|
|
|
|
|
|
|
### Example
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
import jfjoch_client
|
|
|
|
|
from jfjoch_client.rest import ApiException
|
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
|
|
# Defining the host is optional and defaults to http://localhost:5232
|
|
|
|
|
# See configuration.py for a list of all supported configuration parameters.
|
|
|
|
|
configuration = jfjoch_client.Configuration(
|
|
|
|
|
host = "http://localhost:5232"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Enter a context with an instance of the API client
|
|
|
|
|
with jfjoch_client.ApiClient(configuration) as api_client:
|
|
|
|
|
# Create an instance of the API class
|
|
|
|
|
api_instance = jfjoch_client.DefaultApi(api_client)
|
|
|
|
|
id = -1 # int | Image ID in the image buffer. Special values: -1 - last image in the buffer, -2: last indexed image in the buffer (optional) (default to -1)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
# Get preview image in TIFF format
|
|
|
|
|
api_response = api_instance.image_buffer_image_tiff_get(id=id)
|
|
|
|
|
print("The response of DefaultApi->image_buffer_image_tiff_get:\n")
|
|
|
|
|
pprint(api_response)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
print("Exception when calling DefaultApi->image_buffer_image_tiff_get: %s\n" % e)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name | Type | Description | Notes
|
|
|
|
|
------------- | ------------- | ------------- | -------------
|
|
|
|
|
**id** | **int**| Image ID in the image buffer. Special values: -1 - last image in the buffer, -2: last indexed image in the buffer | [optional] [default to -1]
|
|
|
|
|
|
|
|
|
|
### Return type
|
|
|
|
|
|
|
|
|
|
**bytearray**
|
|
|
|
|
|
|
|
|
|
### Authorization
|
|
|
|
|
|
|
|
|
|
No authorization required
|
|
|
|
|
|
|
|
|
|
### HTTP request headers
|
|
|
|
|
|
|
|
|
|
- **Content-Type**: Not defined
|
|
|
|
|
- **Accept**: image/tiff
|
|
|
|
|
|
|
|
|
|
### HTTP response details
|
|
|
|
|
|
|
|
|
|
| Status code | Description | Response headers |
|
|
|
|
|
|-------------|-------------|------------------|
|
|
|
|
|
**200** | Preview image | - |
|
|
|
|
|
**404** | No preview image recorded so far | - |
|
|
|
|
|
|
|
|
|
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
|
|
|
|
|
|
|
|
# **image_buffer_start_cbor_get**
|
|
|
|
|
> bytearray image_buffer_start_cbor_get()
|
|
|
|
|
|
|
|
|
|
@@ -3449,6 +3596,77 @@ No authorization required
|
|
|
|
|
|
|
|
|
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
|
|
|
|
|
|
|
|
# **plot_resolution_estimate_get**
|
|
|
|
|
> Plots plot_resolution_estimate_get(binning=binning, compression=compression)
|
|
|
|
|
|
|
|
|
|
Generate resolution estimate plot
|
|
|
|
|
|
|
|
|
|
Diffraction resolution, as estimated by SSRL ML model; binning is configurable
|
|
|
|
|
|
|
|
|
|
### Example
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
import jfjoch_client
|
|
|
|
|
from jfjoch_client.models.plots import Plots
|
|
|
|
|
from jfjoch_client.rest import ApiException
|
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
|
|
# Defining the host is optional and defaults to http://localhost:5232
|
|
|
|
|
# See configuration.py for a list of all supported configuration parameters.
|
|
|
|
|
configuration = jfjoch_client.Configuration(
|
|
|
|
|
host = "http://localhost:5232"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Enter a context with an instance of the API client
|
|
|
|
|
with jfjoch_client.ApiClient(configuration) as api_client:
|
|
|
|
|
# Create an instance of the API class
|
|
|
|
|
api_instance = jfjoch_client.DefaultApi(api_client)
|
|
|
|
|
binning = 56 # int | Binning of frames for the plot (0 = default binning) (optional)
|
|
|
|
|
compression = True # bool | Enable DEFLATE compression of output data. (optional) (default to True)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
# Generate resolution estimate plot
|
|
|
|
|
api_response = api_instance.plot_resolution_estimate_get(binning=binning, compression=compression)
|
|
|
|
|
print("The response of DefaultApi->plot_resolution_estimate_get:\n")
|
|
|
|
|
pprint(api_response)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
print("Exception when calling DefaultApi->plot_resolution_estimate_get: %s\n" % e)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name | Type | Description | Notes
|
|
|
|
|
------------- | ------------- | ------------- | -------------
|
|
|
|
|
**binning** | **int**| Binning of frames for the plot (0 = default binning) | [optional]
|
|
|
|
|
**compression** | **bool**| Enable DEFLATE compression of output data. | [optional] [default to True]
|
|
|
|
|
|
|
|
|
|
### Return type
|
|
|
|
|
|
|
|
|
|
[**Plots**](Plots.md)
|
|
|
|
|
|
|
|
|
|
### Authorization
|
|
|
|
|
|
|
|
|
|
No authorization required
|
|
|
|
|
|
|
|
|
|
### HTTP request headers
|
|
|
|
|
|
|
|
|
|
- **Content-Type**: Not defined
|
|
|
|
|
- **Accept**: application/json, text/plain
|
|
|
|
|
|
|
|
|
|
### HTTP response details
|
|
|
|
|
|
|
|
|
|
| Status code | Description | Response headers |
|
|
|
|
|
|-------------|-------------|------------------|
|
|
|
|
|
**200** | Everything OK. Response will be by default compressed with deflate algorithm, if using curl, use --compressed option. | - |
|
|
|
|
|
**400** | Input parsing or validation error | - |
|
|
|
|
|
|
|
|
|
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
|
|
|
|
|
|
|
|
# **plot_roi_max_count_get**
|
|
|
|
|
> Plots plot_roi_max_count_get(binning=binning, compression=compression)
|
|
|
|
|
|
|
|
|
|
@@ -4017,263 +4235,6 @@ No authorization required
|
|
|
|
|
|
|
|
|
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
|
|
|
|
|
|
|
|
# **preview_calibration_tiff_get**
|
|
|
|
|
> bytearray preview_calibration_tiff_get()
|
|
|
|
|
|
|
|
|
|
Get last preview image in TIFF format for calibration with PyFAI/Dioptas
|
|
|
|
|
|
|
|
|
|
Image is reduced to unsigned 16-bit images, all bad pixels are set to 65535 and image is mirrored in vertical direction
|
|
|
|
|
|
|
|
|
|
### Example
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
import jfjoch_client
|
|
|
|
|
from jfjoch_client.rest import ApiException
|
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
|
|
# Defining the host is optional and defaults to http://localhost:5232
|
|
|
|
|
# See configuration.py for a list of all supported configuration parameters.
|
|
|
|
|
configuration = jfjoch_client.Configuration(
|
|
|
|
|
host = "http://localhost:5232"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Enter a context with an instance of the API client
|
|
|
|
|
with jfjoch_client.ApiClient(configuration) as api_client:
|
|
|
|
|
# Create an instance of the API class
|
|
|
|
|
api_instance = jfjoch_client.DefaultApi(api_client)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
# Get last preview image in TIFF format for calibration with PyFAI/Dioptas
|
|
|
|
|
api_response = api_instance.preview_calibration_tiff_get()
|
|
|
|
|
print("The response of DefaultApi->preview_calibration_tiff_get:\n")
|
|
|
|
|
pprint(api_response)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
print("Exception when calling DefaultApi->preview_calibration_tiff_get: %s\n" % e)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
This endpoint does not need any parameter.
|
|
|
|
|
|
|
|
|
|
### Return type
|
|
|
|
|
|
|
|
|
|
**bytearray**
|
|
|
|
|
|
|
|
|
|
### Authorization
|
|
|
|
|
|
|
|
|
|
No authorization required
|
|
|
|
|
|
|
|
|
|
### HTTP request headers
|
|
|
|
|
|
|
|
|
|
- **Content-Type**: Not defined
|
|
|
|
|
- **Accept**: image/tiff
|
|
|
|
|
|
|
|
|
|
### HTTP response details
|
|
|
|
|
|
|
|
|
|
| Status code | Description | Response headers |
|
|
|
|
|
|-------------|-------------|------------------|
|
|
|
|
|
**200** | Preview image | - |
|
|
|
|
|
**404** | No preview image recorded so far | - |
|
|
|
|
|
|
|
|
|
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
|
|
|
|
|
|
|
|
# **preview_image_jpeg_get**
|
|
|
|
|
> bytearray preview_image_jpeg_get()
|
|
|
|
|
|
|
|
|
|
Get last preview image in JPEG format using default settings
|
|
|
|
|
|
|
|
|
|
### Example
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
import jfjoch_client
|
|
|
|
|
from jfjoch_client.rest import ApiException
|
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
|
|
# Defining the host is optional and defaults to http://localhost:5232
|
|
|
|
|
# See configuration.py for a list of all supported configuration parameters.
|
|
|
|
|
configuration = jfjoch_client.Configuration(
|
|
|
|
|
host = "http://localhost:5232"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Enter a context with an instance of the API client
|
|
|
|
|
with jfjoch_client.ApiClient(configuration) as api_client:
|
|
|
|
|
# Create an instance of the API class
|
|
|
|
|
api_instance = jfjoch_client.DefaultApi(api_client)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
# Get last preview image in JPEG format using default settings
|
|
|
|
|
api_response = api_instance.preview_image_jpeg_get()
|
|
|
|
|
print("The response of DefaultApi->preview_image_jpeg_get:\n")
|
|
|
|
|
pprint(api_response)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
print("Exception when calling DefaultApi->preview_image_jpeg_get: %s\n" % e)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
This endpoint does not need any parameter.
|
|
|
|
|
|
|
|
|
|
### Return type
|
|
|
|
|
|
|
|
|
|
**bytearray**
|
|
|
|
|
|
|
|
|
|
### Authorization
|
|
|
|
|
|
|
|
|
|
No authorization required
|
|
|
|
|
|
|
|
|
|
### HTTP request headers
|
|
|
|
|
|
|
|
|
|
- **Content-Type**: Not defined
|
|
|
|
|
- **Accept**: image/jpeg
|
|
|
|
|
|
|
|
|
|
### HTTP response details
|
|
|
|
|
|
|
|
|
|
| Status code | Description | Response headers |
|
|
|
|
|
|-------------|-------------|------------------|
|
|
|
|
|
**200** | Preview image | - |
|
|
|
|
|
**404** | No preview image recorded so far | - |
|
|
|
|
|
|
|
|
|
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
|
|
|
|
|
|
|
|
# **preview_image_jpeg_post**
|
|
|
|
|
> bytearray preview_image_jpeg_post(preview_settings=preview_settings)
|
|
|
|
|
|
|
|
|
|
Get last preview image in JPEG format using custom settings
|
|
|
|
|
|
|
|
|
|
### Example
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
import jfjoch_client
|
|
|
|
|
from jfjoch_client.models.preview_settings import PreviewSettings
|
|
|
|
|
from jfjoch_client.rest import ApiException
|
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
|
|
# Defining the host is optional and defaults to http://localhost:5232
|
|
|
|
|
# See configuration.py for a list of all supported configuration parameters.
|
|
|
|
|
configuration = jfjoch_client.Configuration(
|
|
|
|
|
host = "http://localhost:5232"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Enter a context with an instance of the API client
|
|
|
|
|
with jfjoch_client.ApiClient(configuration) as api_client:
|
|
|
|
|
# Create an instance of the API class
|
|
|
|
|
api_instance = jfjoch_client.DefaultApi(api_client)
|
|
|
|
|
preview_settings = jfjoch_client.PreviewSettings() # PreviewSettings | (optional)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
# Get last preview image in JPEG format using custom settings
|
|
|
|
|
api_response = api_instance.preview_image_jpeg_post(preview_settings=preview_settings)
|
|
|
|
|
print("The response of DefaultApi->preview_image_jpeg_post:\n")
|
|
|
|
|
pprint(api_response)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
print("Exception when calling DefaultApi->preview_image_jpeg_post: %s\n" % e)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name | Type | Description | Notes
|
|
|
|
|
------------- | ------------- | ------------- | -------------
|
|
|
|
|
**preview_settings** | [**PreviewSettings**](PreviewSettings.md)| | [optional]
|
|
|
|
|
|
|
|
|
|
### Return type
|
|
|
|
|
|
|
|
|
|
**bytearray**
|
|
|
|
|
|
|
|
|
|
### Authorization
|
|
|
|
|
|
|
|
|
|
No authorization required
|
|
|
|
|
|
|
|
|
|
### HTTP request headers
|
|
|
|
|
|
|
|
|
|
- **Content-Type**: application/json
|
|
|
|
|
- **Accept**: image/jpeg, text/plain, application/json
|
|
|
|
|
|
|
|
|
|
### HTTP response details
|
|
|
|
|
|
|
|
|
|
| Status code | Description | Response headers |
|
|
|
|
|
|-------------|-------------|------------------|
|
|
|
|
|
**200** | Preview image | - |
|
|
|
|
|
**404** | No preview image recorded so far | - |
|
|
|
|
|
**400** | Input parsing or validation error | - |
|
|
|
|
|
**500** | Error within Jungfraujoch code - see output message. | - |
|
|
|
|
|
|
|
|
|
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
|
|
|
|
|
|
|
|
# **preview_image_tiff_get**
|
|
|
|
|
> bytearray preview_image_tiff_get()
|
|
|
|
|
|
|
|
|
|
Get last preview image in TIFF format
|
|
|
|
|
|
|
|
|
|
### Example
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
import jfjoch_client
|
|
|
|
|
from jfjoch_client.rest import ApiException
|
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
|
|
# Defining the host is optional and defaults to http://localhost:5232
|
|
|
|
|
# See configuration.py for a list of all supported configuration parameters.
|
|
|
|
|
configuration = jfjoch_client.Configuration(
|
|
|
|
|
host = "http://localhost:5232"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Enter a context with an instance of the API client
|
|
|
|
|
with jfjoch_client.ApiClient(configuration) as api_client:
|
|
|
|
|
# Create an instance of the API class
|
|
|
|
|
api_instance = jfjoch_client.DefaultApi(api_client)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
# Get last preview image in TIFF format
|
|
|
|
|
api_response = api_instance.preview_image_tiff_get()
|
|
|
|
|
print("The response of DefaultApi->preview_image_tiff_get:\n")
|
|
|
|
|
pprint(api_response)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
print("Exception when calling DefaultApi->preview_image_tiff_get: %s\n" % e)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
This endpoint does not need any parameter.
|
|
|
|
|
|
|
|
|
|
### Return type
|
|
|
|
|
|
|
|
|
|
**bytearray**
|
|
|
|
|
|
|
|
|
|
### Authorization
|
|
|
|
|
|
|
|
|
|
No authorization required
|
|
|
|
|
|
|
|
|
|
### HTTP request headers
|
|
|
|
|
|
|
|
|
|
- **Content-Type**: Not defined
|
|
|
|
|
- **Accept**: image/tiff
|
|
|
|
|
|
|
|
|
|
### HTTP response details
|
|
|
|
|
|
|
|
|
|
| Status code | Description | Response headers |
|
|
|
|
|
|-------------|-------------|------------------|
|
|
|
|
|
**200** | Preview image | - |
|
|
|
|
|
**404** | No preview image recorded so far | - |
|
|
|
|
|
|
|
|
|
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
|
|
|
|
|
|
|
|
# **preview_pedestal_tiff_get**
|
|
|
|
|
> bytearray preview_pedestal_tiff_get(gain_level, sc=sc)
|
|
|
|
|
|
|
|
|
|
|