Respondida
Why does Matlab state that I do not have a valid license file?
I suggest the FAQ: https://matlab.fandom.com/wiki/FAQ#After_installation,_MATLAB_crashes_or_gives_an_error_message_when_I_try_to...

casi 2 años hace | 0

Respondida
inputdlg Window Not Showing
I ran it and it works fine for me. The input window popped up. Your script in not called inputdlg.m is it? Because that would...

casi 2 años hace | 0

Respondida
Manual and Automatic Image Recognition
Most bright spots looks like they're surrounded by a dark spot/ring. Do you want to count those as one of the dark spots? Do y...

casi 2 años hace | 0

Respondida
Can I use Matlab 2024a license with 2022b client software version
I've seen that "You need to update your license" message before and I've done it with no problems. But then I always have our l...

casi 2 años hace | 0

Respondida
How to erase black letters in an image
Try something like this % Demo by Image Analyst clc; % Clear the command window. close all; % Close all figures (except t...

casi 2 años hace | 0

Respondida
How can one use a variable to set color of a line plot , and use colorbar?
If you'd like the line to have a different color at every point along it, you'll have to plot markers with those colors. marker...

casi 2 años hace | 0

Respondida
How to get rid of the error: Error using horzcat. Dimensions of matrices being concatenated are not consistent
In general, this error means that the matrix you're trying to concatenate on the right hand side of your existing matrix does no...

casi 2 años hace | 0

Respondida
how to remove connectec components from original image?
I don't believe imwrite will write the overlay objects, such as circles, into the image. Did yoiu recall dd.png to check if the...

casi 2 años hace | 0

| aceptada

Respondida
retrieve version inside AppDesigner appplication (.mlapp file)
Did you try s = ver('MATLAB'); releaseYear = s.Release(2:end-1); releaseVersion = s.Version; fprintf('You are using MATL...

casi 2 años hace | 0

Respondida
Determine the area of the nodules (in pixels)
It looks rather tough since the abnormalities are of about the same brightness as the bones. But there does seem to be a differ...

casi 2 años hace | 0

Respondida
Create number of for loops depending on size of N
OK, a not-clever but brainless and verbose approach is to just make a set of "if" blocks if N == 2 % Code for N=2 elseif ...

casi 2 años hace | 0

| aceptada

Respondida
How to apply attention mechanism to object detection in RGB images
I don't know what an attention mechanism is. Try these links on abandoned object detection: https://www.mathworks.com/search.h...

alrededor de 2 años hace | 0

| aceptada

Respondida
After adding a command to get dotted line graph I am still getting solid line only in the legend i am getting dotted line
Most likely you have so many points that the dotted line between them is super short, like a pixel. What if you plot just a few...

alrededor de 2 años hace | 0

Respondida
Index exceeds the number of array elements. Index must not exceed 1.
Why do you think path_length_BS_IRS_reflect_UE = 2 * sqrt(d_BS_IRS^2 + d_IRS_UE^2) should have a value for i = 2m 3m etc, when y...

alrededor de 2 años hace | 0

Respondida
How can I fix this code?
I don't see how imshow would throw that error. So now we're left wondering exactly which line of code threw the error. Because...

alrededor de 2 años hace | 0

Respondida
how to get Integrated circuit pads in image?
There are hundreds of papers on that. See http://www.visionbib.com/bibliography/applicat837.html#Inspection%20--%20Chips,%20Wafe...

alrededor de 2 años hace | 0

Respondida
How can I show where an image was clicked from a scatter3 plot?
Not sure how to get the lab value from your click, but assuming you figure that out, you can get a binary image of all the pixel...

alrededor de 2 años hace | 1

Respondida
multiple gaussian fit to xy data
@majid husseini sorry I didn't see this three years ago when you posted it, but maybe it will help someone else. See my attache...

alrededor de 2 años hace | 0

Respondida
how to close a guide figure but close it without deleting the output struct
I believe you need to uncomment the guidata() line. This will update the global handles structure. Otherwise you've added the ...

alrededor de 2 años hace | 0

Respondida
How can I develop a matlab code which analyses and checks how thick the cracks of a wheel surface are?
You can use regionprops, if you have the Image Processing Toolbox, to measure the number of cracks, their width, and the signal ...

alrededor de 2 años hace | 1

Respondida
Counting wheat grains and marking them with image processing
First of all, you need to improve your image capture setup. Why do you have such a horrible, colored, and non-uniform lighting?...

alrededor de 2 años hace | 0

Respondida
Skeletonisation until edges of a beam
Since the base/box is in a fixed permanent position, you can simply measure that location once and you have that point for all f...

alrededor de 2 años hace | 0

Respondida
Mean shift clustering - issue with finding the center of my clusters
How did you read in selected_dataset.rtf? Readmatrix() does not like that extension. I don't think dbscan should take a long t...

alrededor de 2 años hace | 0

Respondida
extracting values from an image with color legend
See my thermal image demo in my File Exchange. I do essentially this but for a thermal image with a colorbar. Image Analyst's ...

alrededor de 2 años hace | 0

Respondida
How can I make the layout in the attached image with tiledlayout
If you understand how subplots work, it's easy. The bottom and right plots just use a 2,2 layout while the upper left two use a...

alrededor de 2 años hace | 0

Respondida
Extract numeric values ​​from a colormap
You need to read that colorbar part of the image and then divide by 255. colorsInBar = rgbImage(row1:row2, col1:col2, :); [r, ...

alrededor de 2 años hace | 0

Respondida
What are the possible reasons for data jumps in the plot?
I don't know where those equations come from. Is it some kind of chaos theory? Anyway, to plot in green like you asked, you ne...

alrededor de 2 años hace | 0

Respondida
How to wrote code for Ramp Filter and show the firgure?
You can use linspace to create the filter. Like numPoints = 101; % Whatever bothRamps = zeros(1, numPoints); % Preallocate %...

alrededor de 2 años hace | 0

Respondida
calculate the area of the black colored objectes in a image
See my Image Segmentation Tutorial in my File Exchange: Image Analyst's File Exchange It's a generic, general purpose demo of ...

alrededor de 2 años hace | 0

Respondida
Calculating the area of the black objects in mm2
You need to know the length of your field of view or of some known thing in the image. See my attached spatial calibration demo...

alrededor de 2 años hace | 0

Cargar más