Class NormalizeOperation
- java.lang.Object
-
- edu.wpi.grip.core.operations.CudaOperation
-
- edu.wpi.grip.core.operations.composite.NormalizeOperation
-
- All Implemented Interfaces:
Operation
public class NormalizeOperation extends CudaOperation
GRIPOperation
foropencv_core.normalize(org.bytedeco.javacpp.opencv_core.Mat, org.bytedeco.javacpp.opencv_core.Mat, double, double, int, int, org.bytedeco.javacpp.opencv_core.Mat)
.
-
-
Field Summary
-
Fields inherited from class edu.wpi.grip.core.operations.CudaOperation
cpuIn, cpuOut, gpuHint, gpuIn, gpuOut, gpuSocket, inputHint, inputSocket, outputHint, outputSocket
-
-
Constructor Summary
Constructors Constructor Description NormalizeOperation(InputSocket.Factory inputSocketFactory, OutputSocket.Factory outputSocketFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<InputSocket>
getInputSockets()
java.util.List<OutputSocket>
getOutputSockets()
void
perform()
Performs thisOperation
.-
Methods inherited from class edu.wpi.grip.core.operations.CudaOperation
cleanUp, preferCuda
-
-
-
-
Constructor Detail
-
NormalizeOperation
@Inject public NormalizeOperation(InputSocket.Factory inputSocketFactory, OutputSocket.Factory outputSocketFactory)
-
-
Method Detail
-
getInputSockets
public java.util.List<InputSocket> getInputSockets()
- Returns:
- A list of sockets for the inputs that the operation expects.
-
getOutputSockets
public java.util.List<OutputSocket> getOutputSockets()
- Returns:
- A list of sockets for the outputs that the operation produces.
-
perform
public void perform()
Description copied from interface:Operation
Performs thisOperation
.
-
-