Hello,
I wonder if there is an easy to translate the following python code to c# without looping over all indices?
normPic = Pic - min(Pic(:));
normPic = normPic ./ max(normPic(:));
imagesc(normPic.^(1/4))
colormap jet
Hello,
I wonder if there is an easy to translate the following python code to c# without looping over all indices?
normPic = Pic - min(Pic(:));
normPic = normPic ./ max(normPic(:));
imagesc(normPic.^(1/4))
colormap jet