답변 있음
Specular Reflections Removal in endoscopic image
Try thresholding, then us regionfill Basically (untested): % Get individual color channels: [r, g, b] = imsplit(rgbImage); %...

2개월 전 | 0

답변 있음
Computer vision needle tracking through ballistic gel.
Honestly those some of those pictures are so bad that it will be difficult to accurately find the needle. You'll accomplish you...

3개월 전 | 0

답변 있음
How to get a smooth boundary between clusters?
I doubt you need to smooth the boundary. That would just give you as many coordinates as you had before and most likely more co...

3개월 전 | 0

| 수락됨

답변 있음
An automatic way to change \ with / (windows vs. unix) only for "addpath"?
@Sim the above answers are correct but only partial -- they're incomplete. I understood that you need to do this for lots of fi...

3개월 전 | 0

답변 있음
Why do I get "Array indices must be positive integers or logical values" when I am trying to plot my functions?
See the FAQ: Subscript indices must either be real positive integers or logicals

3개월 전 | 1

답변 있음
Setting legend of a plot
I think you'd have to build it up manually with the plot and text functions.

3개월 전 | 0

답변 있음
Function not plotting on the app version
It should work. If you look in the workspace panel, are there variables listed there? If you have any more questions, then att...

3개월 전 | 0

답변 있음
shade the area between curves
There is a FAQ for this: https://matlab.fandom.com/wiki/FAQ#How_do_I_shade_the_region_between_two_curves?

3개월 전 | 0

답변 있음
How to make function that goes between points
Try readmatrix or readtable to read your data from the Excel file into MATLAB. To fit a smooth curve through the data, if it's ...

3개월 전 | 0

답변 있음
Roots of a 4th degree polynomial and plotting a graph
Not for some arbitrary k, unless there is something in the symbolic toolbox you can use. Otherwise put k in with the other coef...

3개월 전 | 0

답변 있음
how to plot the time series of the image intensity (greyscale values) at points P1, P2, and P3. where p1=2260,3190 ; p2= 1930,1397; p3= 1580,1937 ?
Read in a frame from your camera or video file. Then for each frame, just do color1 = rgbImage(row1, column1, :) color2 = rgb...

3개월 전 | 0

답변 있음
How can I track the depth and angle of a needle in a box using computer vision?
I only see the needle at only one position. But I'd do something like this Crop out sub image at the known level of the tube. ...

3개월 전 | 1

| 수락됨

답변 있음
How to find depth map image by using a single image......?????
See papers on the topic here: http://www.visionbib.com/bibliography/contentsshapefrom.html#3-D%20Shape%20from%20X%20--%20Shadin...

3개월 전 | 0

답변 있음
How to run standalone application from the folder where it is located?
It sounds like you've discovered that the directory of the app that actually runs is not the same as your executable that you de...

3개월 전 | 0

| 수락됨

답변 있음
Fitting dot plot using diffierent functions
What is a "dot plot"? To fit a polynomial you can use polyfit. See attached demos.

3개월 전 | 1

답변 있음
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...

3개월 전 | 0

| 수락됨

답변 있음
[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 ...

3개월 전 | 0

| 수락됨

답변 있음
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...

3개월 전 | 0

| 수락됨

답변 있음
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 ...

3개월 전 | 2

답변 있음
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...

3개월 전 | 0

답변 있음
Identify the special area in low-contrast image
Try activecontour

3개월 전 | 0

답변 있음
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...

3개월 전 | 0

| 수락됨

답변 있음
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_...

3개월 전 | 0

답변 있음
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...

3개월 전 | 1

| 수락됨

답변 있음
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...

3개월 전 | 0

답변 있음
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...

3개월 전 | 1

답변 있음
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...

3개월 전 | 0

답변 있음
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 ...

3개월 전 | 0

답변 있음
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...

3개월 전 | 0

답변 있음
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...

3개월 전 | 0

더 보기