Réponse apportée
Fitting dot plot using diffierent functions
What is a "dot plot"? To fit a polynomial you can use polyfit. See attached demos.

plus de 2 ans il y a | 1

Réponse apportée
How to display x and y axis to an image in app designer
Did you try the axis function after you called imshow? axis('on', 'image'); Under the image processing options/preferences you...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
[Image Processing] Looking for non-reference based image quality check, BRISQUE results seems untrustworthy on small patch.
Try niqe and piqe. And see https://en.wikipedia.org/wiki/Image_quality And see articles in the Image Processing Literature on ...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Can I create images with accurate size in mm ?
Using a known distance in real world units and a measured pixel distance in your image, you can create a spatial calibration fac...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
I want to run the code examples from Psychtoolbox but I got an error message.
It looks like it's explicitly giving you a string warning that you should not use their toolbox on your computer, but gives you ...

plus de 2 ans il y a | 2

Réponse apportée
What is the difference between the 1st order polynomial fit and linear regression?
A linear regression means the equation is linear in the coefficients, not the variable. (Google it.) So this can be a model for...

plus de 2 ans il y a | 0

Réponse apportée
Identify the special area in low-contrast image
Try activecontour

plus de 2 ans il y a | 0

Réponse apportée
How shall I ignore the reflection in an image and select the rest of the image in a bounding box and obtain the results also automate it in order to process multiple images?
Rather than remove it, just scan across your binary image finding where it's white [rows, columns] = size(binaryImage) topRows...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
why do i get there was an error while extracting product files
See the FAQ: https://matlab.fandom.com/wiki/FAQ#During_installation,_the_installer_crashes,_hangs,_gives_an_error_message,_does_...

plus de 2 ans il y a | 0

Réponse apportée
does matlab version 2021a have forecast command !!!!
See the links at the right side of this page, for example https://www.mathworks.com/help/econ/msvar.forecast.html?s_tid=answers...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
plot a square which has circles inside it
One way is to just have a matrix of (x,y) location of the centers that got placed. Then have a loop of, say, a million iteratio...

plus de 2 ans il y a | 0

Réponse apportée
printing nxnxn matrix into a file
You can't. The .mat file is a proprietary format, and I think it's binary. So the numbers are just in there and it doesn't mak...

plus de 2 ans il y a | 1

Réponse apportée
how to take random words from a sting matrix
"id also like to do something similar where i take a random number from a 1x20 array and asign it to a variable" Try this: you...

plus de 2 ans il y a | 0

Réponse apportée
import file to standalone application
How were they loaded? Did you just find all files in the current folder and load them? Did you list them all in a listbox and ...

plus de 2 ans il y a | 0

Réponse apportée
How to focus my image segmentation algorithm
There is a lot of variation in your image capture setup. You can make vast improvements in it, including Lay the panels on bla...

plus de 2 ans il y a | 0

Réponse apportée
How to focus my image segmentation algorithm
I'm not sure what part of the mask you want to be extracted by cropping, but you can use imcrop or indexing croppedImage = orig...

plus de 2 ans il y a | 0

Réponse apportée
How do I get the outer contour from a line in an image?
I don't know what "the contour function of the line" is. I'd use the Color Thresholder app on the apps tab of the tool ribbon t...

plus de 2 ans il y a | 0

Réponse apportée
Making y-axis positive in both directions
Well I think that would be confusing and deceptive to the reader. But anyway, do you want just the exponent to be positive? Yo...

plus de 2 ans il y a | 0

Réponse apportée
Determine the coordinates of the nodes forming the outermost circle
Can you get the coordinates as a list of (x,y) locations? If so, get the convex hull with convexHull or convhull

plus de 2 ans il y a | 1

Réponse apportée
How much Mac memory can Matlab utilize?
Try this: >> memory in the command window.

plus de 2 ans il y a | 0

Réponse apportée
the size of picture show three data?
The two others said why the size is 3 times the size of the lateral dimensions (because you have 3 color channels/planes). Don'...

plus de 2 ans il y a | 0

Réponse apportée
An error that repeats in my Matlab code-image classification
What tf are you using? When I look in the help it lookos like there are lots of tf functions. It looks like you're trying to c...

plus de 2 ans il y a | 0

Réponse apportée
Ho to find the area of some patterns in an image
Make it easy for us to help you : attach your image or screenshot as a standard PNG format image so that we can see it right her...

plus de 2 ans il y a | 0

Réponse apportée
Size of an image as a single value
"I actually meant the physical size when displyed though." That depends on the figure size. You can resize the figure to any si...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
How CT projection image and intensity plot are related?
@Anand Ra in t = -1*(1/µ)*log(I./Io) note that I is a 2-D array, so the log is also a 2-D array, and thus t is also a 2-D ar...

plus de 2 ans il y a | 1

Réponse apportée
How do I calculate PNSR of an Image
There is a psnr function in the Image Processing Toolbox. help psnr

plus de 2 ans il y a | 0

Réponse apportée
Where can I find video files with the avi extension ?
To find all files under a top level folder, you can do it like this: % Specify the top level folder where the *.avi files are r...

plus de 2 ans il y a | 0

Réponse apportée
Best way to calculate color difference score
That's basically correct. What could possibly be improved is the image capture part, but you don't say anything about that. Ar...

plus de 2 ans il y a | 0

Réponse apportée
Histogram Equalization-Contrast Adjustment
Don't use histogram equalization. It's a common beginner misconception that it helps. It is not needed. First of all, it usua...

plus de 2 ans il y a | 0

Réponse apportée
How to use "imregionalmax" without using for loop
peaks = sort(AF_Nuni(i,imregionalmax(squeeze(AF_Nuni(i,:,:))))); The way you're indexing could be slowing you down. Normally y...

plus de 2 ans il y a | 1

Charger plus