Réponse apportée
Sir, How to extract color and shape features for a leaf image?
Search for the tag leaf. There have been so many in the past and I've given code for lots of them. https://www.mathworks.com/m...

environ 3 ans il y a | 0

Réponse apportée
Increase one of the dimensions of an array
Try interp3 help interp3 Something like (untested) [rows, columns, slices] = size(img) z = linspace(1, slices, 2 * slices); ...

environ 3 ans il y a | 1

| A accepté

Réponse apportée
writting a code on an earthqauke structure need help to understand how to write for defelction points
Why do you think it would have that function already? It's not a built-in function. You have to actually write it. If you thi...

environ 3 ans il y a | 0

Réponse apportée
How to find aximum value in a particular day
Did you try groupsummary? Something like (untested) dayNumber = data(:, 3); rot = data(:, 5); dailyMaxima = groupsummary(rot...

environ 3 ans il y a | 0

| A accepté

Réponse apportée
while fitting my model data to experimental data the resultant curve is shooting very high and is not matching with experimental time points, even on changing ub and lb
Are you just trying to fit this equation: cd(i) = (1- 0.0683) * exp(-0.0240*(t(i) - 6.48)) + 0.0683; If so use fitnlm. I'm at...

environ 3 ans il y a | 0

Réponse apportée
May I ask how to read and display 3D point clouds in the app designer of MATLAB
Did you make an axes and call plot3 or colorcloud?

environ 3 ans il y a | 0

Réponse apportée
Data is being graphed as line instead of sin wave
Should be okay but it looks like you're only plotting time/x. You need to plot y/position as a function of that. timeData = [....

environ 3 ans il y a | 0

Réponse apportée
Deactivate product from old devices
Then just simply call tech support on the phone. Ask for Tech Support->Installation

environ 3 ans il y a | 0

| A accepté

Réponse apportée
How can one distinguish the background from the foreground and detect the edges of the seedling?
This is pretty trivial. Simply use the Color Thresholder on the Apps tab of the tool ribbon. Use it and export the function. ...

environ 3 ans il y a | 0

Réponse apportée
Edit/deleted the question
There are plenty of submissions in the File Exchange for plots with broken axes (skips or gaps in the axis): https://www.mathwo...

environ 3 ans il y a | 0

Poll


The glass is ...

environ 3 ans il y a | 6618 votes | 9 comments

Réponse apportée
How to take the middle of a list?
Try this: a = [1 2 3 4 5 6 7 8 9 10 1 2 3 8 9 10 88 83 99]; b = [ 8 9 10 ]; % Find starting indexes where b is in a: indexes...

environ 3 ans il y a | 0

Réponse apportée
A little help with translating a piece of Fortran code to Matlab
Not sure if you're trying to read or write stuff, but will this work for you: fileName = 'testtext.txt'; dataContents = import...

environ 3 ans il y a | 0

Réponse apportée
Best method for automated transformation mapping for accurate projection of brain atlas masks onto tissue images in MATLAB?
You might be able to figure out how to use imwarp to morph the outer boundary of the image into the outer boundary of the map, a...

environ 3 ans il y a | 0

Réponse apportée
Boundaries in an image
See the FAQ to get code snippets for processing a sequence of files: https://matlab.fandom.com/wiki/FAQ#How_can_I_process_a_seq...

environ 3 ans il y a | 0

Réponse apportée
Histogram analysis for images with changing objects
I doubt those histogram stats will help you, but who knows? What is happening in the image? Is the shape something you think i...

environ 3 ans il y a | 0

Réponse apportée
How shal I do to get a toolbox of statiscal in my computer?
If you've purchased it, or your university supplies it, it should automatically be installed when you install MATLAB. Type this...

environ 3 ans il y a | 0

Réponse apportée
Extract the "overall colors" of an image to apply another?
The best algorithm I've seen for transferring the color gamut is Mark Grundland Color Histogram Specification by Histogram Warpi...

environ 3 ans il y a | 1

Réponse apportée
Read files in a folder with dates on them
How about something like this to sort by the 3 letter month string: months = {'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', ...

environ 3 ans il y a | 1

Réponse apportée
Read files in a folder with dates on them
How about something like this to sort by file time/date stamp: folder = pwd; % Wherever you want. filePattern = fullfile(folde...

environ 3 ans il y a | 1

Réponse apportée
How to get the spatial summation of temperature inisde the specific ROI on each image and how to find that information for a series of thermal images and store as text file.
See my Thermal image to temperature demo in my File Exchange: Image Analyst's File Exchange It's a generic, general purpose de...

environ 3 ans il y a | 0

Réponse apportée
how to create log histogram?
Try stackedplot, subplot, tiledlayout, and nexttile

environ 3 ans il y a | 0

Réponse apportée
Matlab crash dump - Unknown exception 0xe0434f4d
2014b is pretty old. Are you using Windows7 32 bit? Or a modern 64 bit system? See if you can get the publisher to recompile t...

environ 3 ans il y a | 0

Réponse apportée
compute the probability for three events
I suggest you run a Monte Carlo experiment. Just use rand, and run the experiment around a million times and look at what you g...

environ 3 ans il y a | 0

Réponse apportée
Color Correcting a whole image using RGB values
One way you might do it is to draw the rectangle in both images in the same location. Then figure out the mean difference in ea...

environ 3 ans il y a | 0

Réponse apportée
Only 1 image is being displayed. Rest images are not being displayed.
Your segmentation is no good. Just look at your binary image! And don't use image as the name of your variable since it's the ...

environ 3 ans il y a | 0

| A accepté

Réponse apportée
double action of GUIDE adapted drop down menu callback
What if you add a "value changed callback" by right clicking on the dropdown list? Then have this function mydropdown_menu_Cal...

environ 3 ans il y a | 1

Réponse apportée
How to check if my current license support the State flow toolbox?
Type >> ver in the command window. If you have a license to use a particular toolbox, it will show up after you type that. T...

environ 3 ans il y a | 0

Réponse apportée
when I call the image why does not appear?
You don't need to do anything with appdata. Simply do this: % Have user browse for a file, from a specified "starting folder."...

environ 3 ans il y a | 0

Charger plus