#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <math.h>
#include <epicsString.h>
#include <epicsMutex.h>
#include <iocsh.h>
#include <epicsExport.h>
#include "NDArray.h"
#include "NDPluginTransform.h"
Functions | |
template<typename epicsType > | |
void | movePixelStd (NDArray *inArray, NDTransformIndex_t pixelIndexIn, NDArray *outArray, NDTransformIndex_t pixelIndexOut) |
Actually perform the move of the pixel from the input NDArray to it's transformed location in the output NDArray. | |
template<typename epicsType > | |
void | movePixelRGB1 (NDArray *inArray, NDTransformIndex_t pixelIndexIn, NDArray *outArray, NDTransformIndex_t pixelIndexOut) |
Actually perform the move of the pixel from the input NDArray to it's transformed location in the output NDArray. | |
template<typename epicsType > | |
void | movePixelRGB2 (NDArray *inArray, NDTransformIndex_t pixelIndexIn, NDArray *outArray, NDTransformIndex_t pixelIndexOut) |
Actually perform the move of the pixel from the input NDArray to it's transformed location in the output NDArray. | |
int | NDTransformConfigure (const char *portName, int queueSize, int blockingCallbacks, const char *NDArrayPort, int NDArrayAddr, int maxBuffers, size_t maxMemory, int priority, int stackSize) |
Configuration command. | |
void | NDTransformRegister (void) |
epicsExportRegistrar (NDTransformRegister) |
epicsExportRegistrar | ( | NDTransformRegister | ) |
void movePixelRGB1 | ( | NDArray * | inArray, | |
NDTransformIndex_t | pixelIndexIn, | |||
NDArray * | outArray, | |||
NDTransformIndex_t | pixelIndexOut | |||
) | [inline] |
Actually perform the move of the pixel from the input NDArray to it's transformed location in the output NDArray.
[in] | inArray | The NDArray to be transformed |
[in] | pixelIndexIn | A structure holding the indices of the pixel to be moved |
[in] | outArray | The NDArray that will hold the transformed data |
[in] | pixelIndexOut | A structure to hold the indices of the transformed data (where to place the input pixel's data) |
void movePixelRGB2 | ( | NDArray * | inArray, | |
NDTransformIndex_t | pixelIndexIn, | |||
NDArray * | outArray, | |||
NDTransformIndex_t | pixelIndexOut | |||
) | [inline] |
Actually perform the move of the pixel from the input NDArray to it's transformed location in the output NDArray.
[in] | inArray | The NDArray to be transformed |
[in] | pixelIndexIn | A structure holding the indices of the pixel to be moved |
[in] | outArray | The NDArray that will hold the transformed data |
[in] | pixelIndexOut | A structure to hold the indices of the transformed data (where to place the input pixel's data) |
void movePixelStd | ( | NDArray * | inArray, | |
NDTransformIndex_t | pixelIndexIn, | |||
NDArray * | outArray, | |||
NDTransformIndex_t | pixelIndexOut | |||
) | [inline] |
Actually perform the move of the pixel from the input NDArray to it's transformed location in the output NDArray.
[in] | inArray | The NDArray to be transformed |
[in] | pixelIndexIn | A structure holding the indices of the pixel to be moved |
[in] | outArray | The NDArray that will hold the transformed data |
[in] | pixelIndexOut | A structure to hold the indices of the transformed data (where to place the input pixel's data) |
int NDTransformConfigure | ( | const char * | portName, | |
int | queueSize, | |||
int | blockingCallbacks, | |||
const char * | NDArrayPort, | |||
int | NDArrayAddr, | |||
int | maxBuffers, | |||
size_t | maxMemory, | |||
int | priority, | |||
int | stackSize | |||
) |
Configuration command.
void NDTransformRegister | ( | void | ) |