Réponse apportée
How to save files with Canny edge detection and Feature extraction
You need to look over all files in a for loop instead of a while loop in performCannyAndSave allFileNames = imds.Files numFile...

plus de 2 ans il y a | 0

Réponse apportée
how I can represent it in MATLAB
See if the attached manual convolution helps you at all. Adapt as needed.

plus de 2 ans il y a | 0

Réponse apportée
To create a false color image
See the attached article on a variety of ways to convert hyperspectral channels (wavelength bands) into RGB images.

plus de 2 ans il y a | 0

Réponse apportée
Connecting/Activating license without license number/activation key
We don't usually handle installation questions here. See the FAQ: https://matlab.fandom.com/wiki/FAQ#During_installation,_the_i...

plus de 2 ans il y a | 0

Réponse apportée
Counting and measuring size of particles flowing in a video
The Computer Vision Toolbox has motion tracking capabilities. https://www.mathworks.com/help/vision/tracking-and-motion-estimat...

plus de 2 ans il y a | 0

Réponse apportée
Last Saved .PNG uploaded on all PPT slides
What does this line do: dataSlides = add(ppt,'Title and Content'); What is ppt? I'd use ActiveX if you're using Windows. Why...

plus de 2 ans il y a | 0

Réponse apportée
My function to read data from three csv files is only reading one file and storing it in 'ans' instead of the variable K.
How did you run it? You didn't just push the green run triangle did you? Did you do something like this: [K, K_sub, Q] = inpu...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
automatic threshold based segmentation
See my Image Segmentation Tutorial in my File Exchange: Image Analyst's File Exchange It's a generic, general purpose demo of ...

plus de 2 ans il y a | 0

Réponse apportée
What does this mean: K12_global(1:3:6,1:3:6)?
Another example indexes = 1 : 3 : 6 The next index would be 7 since 4 + 3 = 7, but since it was told to stop at 6, the 7 does ...

plus de 2 ans il y a | 0

Réponse apportée
Using max value to normalize data
Use rescale to rescale a matrix from min to max to whatever range you want: signal = rescale(signal, 0, 1);

plus de 2 ans il y a | 0

Réponse apportée
Index in position 3 exceeds array bounds
Evidently sim_data.cart_pos does not have 3 dimensions. What does this show if you put it just before that line that throws the...

plus de 2 ans il y a | 0

Réponse apportée
Work to create a app
I made some fixes to it but it still doesn't plot anything. It runs without errors though. See attached.

plus de 2 ans il y a | 0

Réponse apportée
where to put the break condition for the while loop
You need to decide when to get out of the loop. This can be either after a certain number of iterations, or when mode is no...

plus de 2 ans il y a | 0

Réponse apportée
how to convert color image to gray in app designer in different windows without using imread and rgb2gray?
What can be used if your instructor doesn't want you to use any built-in functions? What can be programmed "without any built-i...

plus de 2 ans il y a | 0

Réponse apportée
How can i get table with data of u1,u2,u3,u4?
Instead of your last line where you called table2array, try this: T = table(u1', u2', u3', u4', 'VariableNames', {'u1', 'u2', '...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
compute sums by accumulating in a for-loop
Look at this: x=normrnd(0,1,100,1); xprime=detrend(x,'constant'); phi=zeros(14,1); L= [0:13]'; for l=1:14 temp = (sum(...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Image processing and Segmentation
Not sure what cells you are talking about. And do you want cells if they are not fully contained in the image? If you have any...

plus de 2 ans il y a | 0

Réponse apportée
help with proper notch filter
I have Fourier filtering demos, attached.

plus de 2 ans il y a | 0

Réponse apportée
Linear Interpolation listed data points on to anothe list
You're mixing up x_data, x, z_new, and v. I think the nomenclature is confusing you. Try this: x_data = [0.7127, 0.6954, 0.678...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Regression Learner - Neural Network results not reproducible
When you export the model "trainedModel" to the workspace, you then have to save it in a .mat file so that you can recall it for...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
how to convert color image to gray in app designer in different windows without using imread and rgb2gray?
Once you have your pixel values in a 3-D array (rows x columns x 3 colors), you call rgb2gray. Why did you read in the image th...

plus de 2 ans il y a | 0

Réponse apportée
How should the output look like of the MSE of a median filtered image?
You should use the built-in functions immse and psnr

plus de 2 ans il y a | 0

Réponse apportée
Compute convolution y[n]=x[n]*h[n]: x[n]={2,0,1,-1,3}; h[n]={1,2,0,1}
@Li Hui Chew, yes your approach is correct. Is that all you wanted - confirmation of your approach?

plus de 2 ans il y a | 0

Réponse apportée
How do you apply a 3x3 low pass filter on an image that is noisy (salt and pepper) , and what is it supposed to do?
Basically the same as your other question where you used the median filter. So, borrowing from my answer there: If inpict is a...

plus de 2 ans il y a | 0

Réponse apportée
How do you apply a 3x3 median filter on an image that is noisy (salt and pepper) , and what is it supposed to do?
If inpict is a gray scale image, that would apply a median filter to ALL pixels in the image, not just the impulse/salt&pepper n...

plus de 2 ans il y a | 0

Réponse apportée
I want a trial version of whatever will allow me to use smithplot on R2009b. If not I need to purchase the toolbox.
We can't help you here. You'll need to contact the sales department on Monday.

plus de 2 ans il y a | 0

Réponse apportée
How should I control label behavior when enabling/disabling elements in app designer?
Evidently the label next to the listbox is kind of its own control (partially). You need to set properties for the label indepe...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Work to create a app
@Walter Roberson says your script runs without error. So once you have that you can start a new App Designer app, place a pushb...

plus de 2 ans il y a | 0

Réponse apportée
Help Required in using the function 'removerows' and its reverse function
You can't. See: x1 = [1 2 4; 1 1 1; 3 2 2; 0 0 0] [y1,ps] = removerows(x1,'ind',[2 4]) % Reverse the processing of y1 to get...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
App Designer - Where is the Component Property Tab??
The properties for the selected control are in a panel in the lower right part of the screen. Make sure you have selected the c...

plus de 2 ans il y a | 0

Charger plus