TensorFlow Images Processor
2 min
the tensorflow images processor feeds images to a tensorflow model you've already created and trained why use the tensorflow images processor use this processor when your analytics flow needs to pass image data, rather than time series values, into a tensorflow model, for example, running an existing image classification model against images captured on the factory floor how it works point model path at your trained tensorflow model tags , input operation , and output operation must match the names used when the model was created tags identifies which model to load if there's more than one, and input operation and output operation identify the tensors the model expects as input and returns as output use gray to control whether images are processed in grayscale or color, and image format to specify the incoming images' format time shift ms shifts the output's timestamp by the specified number of milliseconds parameters parameter details model path the file path of the pre trained tensorflow model tags tags for loading the model separate multiple tags with commas input operation the input tensor used when the model was created, usually the dictionary of values fed to the model output operation the output tensor used when the model was created, usually the model's output gray whether images are processed in grayscale or color image format the format of the input images, jpg or png time shift ms how many milliseconds to shift the current timestamp by pass through value determines whether the processor's output is the model's result or the original unchanged input value