回答済み 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...