If we consider the tensor as a 3D array, this function finds the indexes of the minimum element in each subarray of size window.
window
tensor - Float32Array of size (width * height * depth). 3D array of input data
tensor
tensorShape - Should be {width, height, depth}
tensorShape
window - Size of each subarray, in each of which will be found the index of the min element
output - Float32Array of size (width * height * depth). The index of the min value will be written into this array for each subarray.
output
If we consider the tensor as a 3D array, this function finds the indexes of the minimum element in each subarray of size
window.tensor- Float32Array of size (width * height * depth). 3D array of input datatensorShape- Should be {width, height, depth}window- Size of each subarray, in each of which will be found the index of the min elementoutput- Float32Array of size (width * height * depth). The index of the min value will be written into this array for each subarray.