답변 있음 image segmentation on meat picture
I would filter by the red color plane.
See below:
myImage = imread('too-much-red-meat101.jpg');
rPlane = myImage(:,:,1)...
거의 15년 전 | 0
| 수락됨
답변 있음 uniformly distributed coordinate points
You can also do the following if you want a uniform grid:
[X,Y] = meshgrid(linspace(1,1000,100),linspace(1,1000,100));
T...
거의 15년 전 | 2
답변 있음 jpeg image compression
This is a logical statement, let's break it down - english on left, MATLAB on right.
if the number of dimensions of x is not...
거의 15년 전 | 1
답변 있음 Setting Image Contrast Window Auto
imshow will let you specify high and low when you view the image. Syntax here:
imshow(I,[low high])
If you would like to co...
거의 15년 전 | 0
| 수락됨
답변 있음 minimise two functions simultaneously
It may be brute force. But, I first would try fmincon. fmincon is usually what I try first! You probably have limits for your c...
답변 있음 reading string from a cell for importing data
cellfun will probably be the easiest way to do this for you. cellfun will allow you to run a particular function on every eleme...
답변 있음 pause job on job manager
It is possible to change the priority of jobs in the queue, if they are not currently running. The commands are promote and dem...
거의 15년 전 | 1
답변 있음 Recognition of a comet
From looking at your code, it looks like you are trying to distinquish your comet by finding something fairly white. I am uncert...
거의 15년 전 | 0
답변 있음 Interpolation within a 3d array
You can probably use a lot of methods to do this, depending on what your function looks like.
If you do not have the optimiza...
답변 있음 Am I inside a parfor?
You can check to see if you are currently running on a worker (aka running in parallel) by using the following commands.
...
거의 15년 전 | 7
| 수락됨
답변 있음 Parallel Computing
Hello.
I would suggest doing the recording in the background using a single MATLAB worker with a single task. You can set up...