제출됨


MATLAB version of ImageJ
Providing ImageJ-like experience in MATLAB !

거의 10년 전 | 다운로드 수: 3 |

5.0 / 5

문제를 풀었습니다


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

거의 10년 전

답변 있음
calculate the normal vector of a 2D image
Is this what you're looking for ? <https://www.mathworks.com/help/matlab/ref/surfnorm.html Compute and display 3-D surface n...

거의 10년 전 | 1

| 수락됨

답변 있음
Checking inequality condition for each component of a vector.
Unlike Python, you can't use multiple inequality expression in MATLAB. You'll have to do this : -0.1 < vec & vec < 0.1 ...

거의 10년 전 | 1

| 수락됨

답변 있음
Can I use a vector as index variable for a loop?
Well, you can't use loop variable that way. You can use nested for loop to assign new loop variable for the inner for loop. For ...

거의 10년 전 | 0

문제를 풀었습니다


Rutgers Homework 3 Problem 4
Please solve homework 3 problem 4. You can find the full problem statement here: https://drive.google.com/file/d/0B9G6VyQG...

거의 10년 전

문제를 풀었습니다


Rutgers Homework 3 Problem 3
Please solve homework 3 problem 3. You can find the full problem statement here: https://drive.google.com/file/d/0B9G6VyQG...

거의 10년 전

제출됨


struct2xml with bug fix
Converts a structure into xml text string or an xml file

거의 10년 전 | 다운로드 수: 1 |

5.0 / 5

답변 있음
How can i repeatedly store a smaller matrices after manipulations in a specific place of a larger matrix.
Here's a solution (apparently this will only work with a square matrix) : im_result = zeros(size(im_original)); % S...

거의 10년 전 | 0

답변 있음
how to quantify multicolor images ?
Here's a solution img = imread('Picture1.png'); imh = imshow(img); % Create a mask using freehand ROI h = imfree...

거의 10년 전 | 1

| 수락됨

문제를 풀었습니다


Sum of digits of powers of 2
Given n, first, calculate the number 2^n. Then, sum the digits that comprise that number. For example: Input: n = 7 2^n = ...

거의 10년 전

문제를 풀었습니다


Sum of digits of powers of 2
Given n, first, calculate the number 2^n. Then, sum the digits that comprise that number. For example: Input: n = 7 2^n = ...

거의 10년 전

문제를 풀었습니다


Create a row array using double colon operator
Create a row array from 9 to 1, using the double colon operator.

거의 10년 전

문제를 풀었습니다


Electrical Diode Current Calculation
In engineering, there is not always a single equation that describes a phenomenon accurately enough to be applied in all instanc...

거의 10년 전

문제를 풀었습니다


Rutgers Homework 3 Problem 1
In engineering, there is not always a single equation that describes a phenomenon accurately enough to be applied in all instanc...

거의 10년 전

문제를 풀었습니다


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

거의 10년 전

문제를 풀었습니다


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

거의 10년 전

답변 있음
how to access an array using a string?
You can store data in a structure s = struct; s.var1 = z(9698:9797); s.var2 = z(23298:23397); s.var3 = z(...

거의 10년 전 | 2

제출됨


mat2np : turn MATLAB array into a Python Numpy object
Saves a 1-D or 2-D MATLAB array into pickled Numpy array

거의 10년 전 | 다운로드 수: 8 |

5.0 / 5

제출됨


Local adaptive thresholding with GUI to help find best parameters.
Local adaptive thresholding based on local mean and standard deviation.

거의 10년 전 | 다운로드 수: 2 |

5.0 / 5
Thumbnail

제출됨


Orthogonal Viewer for Grayscale Image Stack
Orthoviewer takes a grayscale image stack and displays its orthogonal views.

거의 10년 전 | 다운로드 수: 1 |

5.0 / 5
Thumbnail

제출됨


randcmap
randcmap generates colormap with random order

거의 10년 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

제출됨


Creating extended depth of field image through focus stacking
This function merges a stack of images taken at multiple focal planes into an all-in-focus image.

거의 10년 전 | 다운로드 수: 2 |

5.0 / 5
Thumbnail

제출됨


Poisson distribution-based minimum error thresholding
finding a threshold that separates foreground and background using minimum error thresholding

거의 10년 전 | 다운로드 수: 1 |

5.0 / 5
Thumbnail

제출됨


ROI Manager
Manage multiple ROI handles

거의 10년 전 | 다운로드 수: 1 |

5.0 / 5
Thumbnail

제출됨


Zeiss Laser Scanning Confocal Microscope LSM file reader
Read image data from Zeiss LSM files

거의 10년 전 | 다운로드 수: 1 |

4.75 / 5

제출됨


Read information from Zeiss CZI image file.
This function returns various information on a Zeiss CZI image file.

거의 10년 전 | 다운로드 수: 2 |

5.0 / 5

질문


Why do UI control objects in GUI disappear during/after plotting ?
I made a GUI using GUIDE in R2014b. It contains an axes for plotting and many UI controls, such as push buttons and popup menus....

11년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
How to speed up surf plot for thousands of objects ?
Thanks, guys. I tried reducing the number of faces and it didn't really make a difference. Changing the command surf to ...

11년 초과 전 | 1

질문


How to speed up surf plot for thousands of objects ?
I want to plot thousands of objects in 3d using surf plot. My code looks like this % src is an m x 3 matrix. Each row is...

11년 초과 전 | 답변 수: 3 | 0

3

답변

더 보기