Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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 ...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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...

fast 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 1

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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 ...

etwa 2 Jahre vor | 0

Beantwortet
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 ...

etwa 2 Jahre vor | 1

Beantwortet
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?...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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 ...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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, ...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Beantwortet
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 %...

etwa 2 Jahre vor | 0

Beantwortet
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 ...

etwa 2 Jahre vor | 0

Beantwortet
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...

etwa 2 Jahre vor | 0

Mehr laden