Réponse apportée
the avarage value for a video
See attached demo.

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to extract data from variable
What does this show: whos data I need to know what kind of variable it is. It doesn't look like a cell array. It looks more ...

plus de 3 ans il y a | 1

Réponse apportée
Error - Error using im2double
Your code does not use im2double. And you did not post the entire error message (all the red text). I know because the line nu...

plus de 3 ans il y a | 0

Réponse apportée
Dimming an Image with a new max?
Try dimmed = rescale(orig, new_min, new_max); For example dimmed = rescale(orig, 0, 157); % Linearly scale image to now go be...

plus de 3 ans il y a | 0

Réponse apportée
Help with matlab script
You had an extra "end" between step 4 and 5, and V_interpolated is not defined. Was it supposed to be interp_speeds instead of ...

plus de 3 ans il y a | 0

Réponse apportée
Find (local?) maxima when two maxima are adjacent to each other (maybe using islocalmax or findpeaks?)
If it's also a global max, you can do freq = [37 37 23 1 1 1]; [~, indexes] = find(freq == max(freq)) Works no matter if the ...

plus de 3 ans il y a | 1

Réponse apportée
How to reconstruct a corrupted image?
I don't know what the "upper layer" is. First you can call rgb2gray() to convert it to gray scale. But after that there is a ...

plus de 3 ans il y a | 0

Réponse apportée
MATLAB R2013b
What did the sales people say when you called them? You did call them, right?

plus de 3 ans il y a | 0

Réponse apportée
measuring duration of peaks
Try % Find valley to the left of the peak hold on; for k = 1 : numPeaks % Start just to the left of the peak by one inde...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
how to sketch the graph of iterative sequence
Did you try this: k = 1 : 99; x = k * 4; subplot(1, 2, 1); plot(k, x, 'b-', 'LineWidth', 2); grid on; Or this x = linspac...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to stop pi appearing as a text in the disp result?
I suggest you don't use symbolic terms at all. I suggest you just do it numerically with a for loop to sum some number of terms...

plus de 3 ans il y a | 0

Réponse apportée
how to remove error for edge detection in command P=edge(I,'prewitt');
You're probably passing it an RGB image: % Works with gray scale image: grayImage = imread('moon.tif'); edgeImage = edge(gray...

plus de 3 ans il y a | 0

Réponse apportée
How can I process the image and extract the spacing between individuals dots in a row ?
Like @Walter Roberson said, Use the radon transform to discover the angle at which your spot array is rotated. See attached d...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
I am running into this error "Index in position 3 is invalid. Array indices must be positive integers or logical values." and do not understand why.
Before the line where it errors, put this slice1 = SaveCropVideo(str2double(Name), 1) slice2 = SaveCropVideo(str2double(Name),...

plus de 3 ans il y a | 0

Réponse apportée
How to convert ground turth data to Images
Depends on what you're doing. If you're doing regression you can just put the ground truth values in a table or matrix. If you...

plus de 3 ans il y a | 0

Réponse apportée
The noise histogram come deffrent as I expected
Please post your screenshots here if they are less than 5 MB. Let's keep your question content all in one place rather than sca...

plus de 3 ans il y a | 1

Réponse apportée
Tracking bubbles in a video recording
Try imtophat or imbothat on the original grayscale (not pseudocolored) image frames. Or try adapthisteq to flatten the image to...

plus de 3 ans il y a | 0

Réponse apportée
where is the error in this code?
See the FAQ for a thorough discussion: https://matlab.fandom.com/wiki/FAQ#Why_is_0.3_-_0.2_-_0.1_(or_similar)_not_equal_to_zero...

plus de 3 ans il y a | 0

Réponse apportée
can anyone please help me solve the accuracy verification issue with region props? is the performance optimal for measurements? has it been converted to square microns?
You didn't post the complete file. Can you attach it? What is numZones? 12? Perhaps the other zones are off the end of the i...

plus de 3 ans il y a | 0

Réponse apportée
Please help finding the average thickness of the marked region in image automatically for 1000 such images.
I'd threshold for the bright layer. Then scan the image column by column to find out where the bright column is. Then scan tho...

plus de 3 ans il y a | 0

Réponse apportée
Collect data from directories
See some file and folder demos, attached. Adapt as needed.

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
How to plot a 2D map of values on cirle colored by intensity
Try using scatter scatter(x, y, markerSize, colormap, 'filled');

plus de 3 ans il y a | 0

| A accepté

Poll


Regarding my MATLAB skills, I am a

plus de 3 ans il y a | 2510 votes | 2 comments

Réponse apportée
Can you please say why this is coming? can you please solve this?
You forgot to attach 'Capteur2125011.txt'. My guess is that you're either creating fields of "opts" that are not valid in readt...

plus de 3 ans il y a | 0

Réponse apportée
How do i open a .bzl file(bazel file) using matlab?
Have you searched the File Exchange? Who gave you the file(s)? Can you ask them for a MATLAB reader for the files? Are the ...

plus de 3 ans il y a | 0

Réponse apportée
Updating a graph by changing which column of a matrix is being plotted to create an animation.
You may be interested in this attached demo that creates a sequence of plots and writes them to a movie file. I have lots of ot...

plus de 3 ans il y a | 0

Réponse apportée
Plotting a contour plot on top of an image?
Look into labeloverlay and visboundaries help labeloverlay help visboundaries

plus de 3 ans il y a | 0

Réponse apportée
How to add together values in matrix and replace the empty spaces with zeroes
@Mathieu NOE's answer can be done more simply for those lucky enough to have the Image Processing Toolbox, which can find the in...

plus de 3 ans il y a | 0

Réponse apportée
Scale Bar adjustment in an OCT scan
Perhaps you should ask your Fiji question in an ImageJ forum. We're just about MATLAB here. I'm attaching a demo about drawing...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
temperature measurement of gas turbine blade
You've given us nothing to help on yet, but we can try. In the meantime, see my attached thermal example In addition, see my...

plus de 3 ans il y a | 0

| A accepté

Charger plus