Respondida
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)...

casi 15 años hace | 0

| aceptada

Respondida
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...

casi 15 años hace | 2

Respondida
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...

casi 15 años hace | 1

Respondida
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...

casi 15 años hace | 0

| aceptada

Respondida
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...

casi 15 años hace | 1

| aceptada

Respondida
turn off hyperthreading when i'am using Matlab
Depending on your release, you can either turn it off in the preferences - or for newer releases there is a start up option for ...

casi 15 años hace | 1

Respondida
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...

casi 15 años hace | 1

| aceptada

Respondida
Adding worker to matlab pool without closing?
There is no way to add a worker to an existing matlabpool. You must close it every time.

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 1

Respondida
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...

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 0

Respondida
Change the resolution of an image created/opened with imshow
I think you can solve this by changing the 'InitialMagnification' property to change the magnification used to display the image...

casi 15 años hace | 1

Respondida
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. ...

casi 15 años hace | 7

| aceptada

Respondida
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...

casi 15 años hace | 2

| aceptada

Respondida
use the parfor loop and the distributed array together
Hello. You can not use distributed arrays and parfor together. If you only want to use part of the distributed array in each ...

casi 15 años hace | 2