Skip to content
Snippets Groups Projects
Commit 2916a2e3 authored by Eric Wait's avatar Eric Wait
Browse files

Renamed ImProc to HSP so that it matches the name Hydra Signal Processor

parent 9ab62b90
No related branches found
No related tags found
No related merge requests found
Showing
with 2 additions and 2 deletions
File moved
File moved
File moved
% Closure - This kernel will dilate follow by an erosion.
% arrayOut = ImProc.Cuda.Closure(arrayIn,kernel,[numIterations],[device])
% arrayOut = HSP.Cuda.Closure(arrayIn,kernel,[numIterations],[device])
% imageIn = This is a one to five dimensional array. The first three dimensions are treated as spatial.
% The spatial dimensions will have the kernel applied. The last two dimensions will determine
% how to stride or jump to the next spatial block.
......@@ -18,5 +18,5 @@
%
% imageOut = This will be an array of the same type and shape as the input array.
function arrayOut = Closure(arrayIn,kernel,numIterations,device)
[arrayOut] = ImProc.Cuda.Mex('Closure',arrayIn,kernel,numIterations,device);
[arrayOut] = HSP.Cuda.Mex('Closure',arrayIn,kernel,numIterations,device);
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment