Answered
Will the MATLAB Answers community diminish/obsolete with the rise of AI-based chatbots?
ChatGPT will never be as good as me solving image processing problems. It may reduce the number of people coming here for answe...

3 years ago | 1

Answered
I want to find the edge lengths of the shape in a given image.
help houghlines

3 years ago | 0

Answered
Read txt data with blank rows
Just check for null after you get the string and skip to the bottom of the loop if it's empty while ischar(tline) if isemp...

3 years ago | 0

| accepted

Answered
hostid and hostid ine the license do not match
Fastest route to sucess is to do what it says in the FAQ: https://matlab.fandom.com/wiki/FAQ#During_installation,_the_installer_...

3 years ago | 0

Answered
What is the coding for plot histogram for multiple image?
Perhaps look at histogram, histcounts, stackedplot, subplot, tiledlayout, nexttile, and bar

3 years ago | 0

Answered
How to change a variable name without changing the value itself?
Just do them one at a time, reassiging existing variables to variables with your new, preferred names. Then you can clear the o...

3 years ago | 0

| accepted

Answered
dlmread vs load vs fopen. When to use each of them ?
load is normally used to open .MAT format files, though it's smart enough to open other formats if the data is laid out simply e...

3 years ago | 0

Answered
Why the image acquisition explorer works much worse than imaqtool and why matlab decided to delete the last one?
Some of the camera may show up if you use a generic adapter, such as dcam, winvideo, or gentl. If you still don't see them, the...

3 years ago | 0

Answered
Why does "Azure Information Protection" popup pause the MATLAB script when I use "actxserver" ?
Here is a way you can do it all from the Excel ActiveX server, instead of using that separate file and calling PowerShell as the...

3 years ago | 1

Answered
How to fill the area under the curve ?
See the FAQ: https://matlab.fandom.com/wiki/FAQ#How_do_I_shade_the_region_between_two_curves? Basically you have to define a c...

3 years ago | 0

Answered
What is the difference in inpaintn and inpaint_nans functions?
You should also look at the function regionfill in the Image Processing Toolbox, if you have it. Does essentially the same thin...

3 years ago | 0

Answered
Remove falsely detected foreground (image segmentation)
Go here for better, and published, algorithms: https://www.google.com/search?hl=En&as_sitesearch=www.visionbib.com%2F&bthG=Goog...

3 years ago | 0

Submitted


Thermal image - color to temperature
Convert a pseudocolored RGB thermal image from a thermal camera, using the embedded color bar, into a temperature image.

3 years ago | 1 download |

0.0 / 5
Thumbnail

Answered
How can I take the rgb value of an image and color correct to an original rgb value?
You forgot to attach your reference image and the image that needs correction. Basically you need to segment the image to find ...

3 years ago | 0

| accepted

Answered
What causes strange behavior of subtracting?
It's explained pretty well in the FAQ: https://matlab.fandom.com/wiki/FAQ#Why_is_0.3_-_0.2_-_0.1_(or_similar)_not_equal_to_zero...

3 years ago | 0

Answered
How to take Image as Input in a function
For example grayImage = imread('moon.tif'); meanGL = mean2(grayImage) grayImage2 = DarkenImage(grayImage); % Call function m...

3 years ago | 0

Answered
Why does this give me the "Unable to perform assignment because the left and right sides have a different number of elements." error?
Perhaps make it a cell array: numControls = length(app.components) display_names = cell(numControls, 1); for k = 1 : numContr...

3 years ago | 0

Answered
Why i cannot get full database?
Maybe it's due to you looking for the wrong extension in the folder. For example, maybe this: addpath('C:\Users\User\Desktop\L...

3 years ago | 0

Answered
Matlab plots not working
You probably redefined the built-in function "axis" with your own m-file, function, or variable. Don't do that. rename your m-...

3 years ago | 0

| accepted

Answered
why is the lamp changing color?
In Numer_of_zonesEditFieldValueChanged you have app.Lamp.Color='r'; and app.Lamp.Color='green'; so it's quite possible that ...

3 years ago | 0

Answered
I have a query with regards to matlab app designer
Make a second GUI where you collect your input. Have it return the values separately, or all together as fields of a structure....

3 years ago | 0

Answered
Hi everyone, how do I fix this issue/>>>>>>Array indices must be positive integers or logical values.
Since this is one of the most common FAQs, see the FAQ for a thorough discussion: https://matlab.fandom.com/wiki/FAQ#.22Subscri...

3 years ago | 0

Answered
I want to find second and third maxima in a row of a matrix of size 1000*8
Use maxk: m = randi(99, 4, 10) % Sample small matrix. Replace with yours. row = 2; % Whatever row you want. v2 = maxk(m(row,...

3 years ago | 0

| accepted

Answered
How to find the Feret Diameters of a leaf
Did you search the tags for leaf? Because there are lots of questions about analyzing leaves. Here is a solution for a single ...

3 years ago | 0

Answered
It either tells me "Too many arguments specify one" or "index in position 2exceeds array bounds" for line 9 (plot)
Evidently sim does not produce 3 output arguments. You seem to think it will give you t, x, and y. It does not. help sim Try...

3 years ago | 0

Answered
Matlab app for non matlab software holders
If you have the compiler toolbox you can compile a standalone executable for them. See the FAQ: https://matlab.fandom.com/wik...

3 years ago | 1

Answered
How to call sigmoid function inside runge kutte orde 4? Is it possibel?
To call a function from within another function, just call the function by name and pass it the arguments it wants. For example...

3 years ago | 0

| accepted

Answered
Matlab ignores the initial working folder setting
Create a startup.m file and put it in a folder that is at the top of your path. You can then have it cd to whatever folder loca...

3 years ago | 1

| accepted

Answered
how to calculate the area of each bin of intersection of a circle and mesh grid?
Try this: % Demo by Image Analyst to separate point sets using the convex hull. clc; % Clear the command window. close all...

3 years ago | 1

| accepted

Answered
Create transparent overlay imagesc for certain values
You can use labeloverlay

3 years ago | 0

Load more