13 lines
277 B
Python
13 lines
277 B
Python
import json
|
|
import numpy
|
|
from cam_server.pipeline.data_processing import functions
|
|
from logging import getLogger
|
|
|
|
_logger = getLogger(__name__)
|
|
|
|
|
|
def process_image(image, pulse_id, timestamp, x_axis, y_axis, parameters, bsdata):
|
|
ret = {}
|
|
ret["test"] = 1
|
|
return ret
|