Feeds
提问
What are some beginner algos that I can use to separate two overlapping nuclei?
I am trying to extract nuclei from images. I have tried WaterShed but it is not very optimal in use. Example images: https://p...
7 years 前 | 1 个回答 | 0
1
个回答提问
Can I apply griddedinterpolant to a binary image to resize it back? What I want to achieve. Below. Error: Invalid arguments specified in evaluating the interpolant.
F1 = griddedInterpolant(double(G)); %G is binary xq = (0:6/5:sx)'; yq = (0:6/5:sy)'; zq = (1:sz)'; vq1 = uint8(F1...
7 years 前 | 1 个回答 | 0
1
个回答提问
Can SQRT be used on an RGB image with double precision?
I am trying to square root my RGB image but it keeps showing me a white output image.
7 years 前 | 1 个回答 | 1
1
个回答提问
How does the the division of image by 255 work and multiplication of one image with another? Need help understanding the bold part of the code. This code is complete and can run in MATLAB.
for i = 1:256 for j = 1:256 R(i,j) = j-1; end end colormap(gray(256)); I = zeros(256,256); for i=1:25...
7 years 前 | 1 个回答 | 0