Réponse apportée
Segmenting using X-Y co-ordinate axis
XY coordinates are non-standard (in MATLAB) for displaying images. But non-standard doesn't mean "not doable." Using the AXIS XY...

plus de 13 ans il y a | 0

Réponse apportée
to plot different graph in a single window
If you want to plot IC vs VCE _and_ IB, you might want to consider using PLOT3 or SURF. Or some other 3D visualizer. Brett

plus de 13 ans il y a | 0

Réponse apportée
How do I increase the speed of a line plot?
Daniel, Withoug seeing your code, it's difficult to guess what's causing the slowdonw. But try using LINE instead of PLOT. I ...

plus de 13 ans il y a | 1

Réponse apportée
How to plot navigation points on an indoor floorplan
Look at the <http://www.mathworks.com/access/helpdesk/help/techdoc/ref/quiver.html QUIVER> command (and HOLD ON, of course). Tha...

plus de 13 ans il y a | 1

Réponse apportée
How to find direction (directional vectors) of a moving object in a video?
The Video and Image Processing Blockset provides <http://www.mathworks.com/access/helpdesk/help/toolbox/vipblks/ref/opticalflow....

plus de 13 ans il y a | 0

Réponse apportée
Cursor line
I would create a line object for each axes, and use <http://www.mathworks.com/access/helpdesk/help/techdoc/ref/linkprop.html LIN...

plus de 13 ans il y a | 1

Réponse apportée
Reading a txt file with different number of rows for each column
Noga, Read the <http://www.mathworks.com/access/helpdesk/help/techdoc/ref/textscan.html doc for |textscan|>. There's a section ...

plus de 13 ans il y a | 0

Réponse apportée
Random Corner Patches
Harris corner detection is the default for the Image Processing Toolbox function <http://www.mathworks.com/access/helpdesk/help/...

plus de 13 ans il y a | 0

Réponse apportée
what is the difference between image and imshow ?
|image| is a MATLAB command that visualizes your matrix as simply a matrix of numbers. The colors used to represent each value m...

plus de 13 ans il y a | 9

| A accepté

Réponse apportée
Apply Zoom in other axes
See the help for <http://www.mathworks.com/access/helpdesk/help/techdoc/ref/linkaxes.html LINKAXES>. Cheers, Brett

plus de 13 ans il y a | 1

| A accepté

Réponse apportée
box counting to boundary
Damodara, There are no MathWorks-supported functions (Toolbox or otherwise) that I'm aware of for box counting. There are, ho...

plus de 13 ans il y a | 0

Réponse apportée
Select axes for zoom in/out
img = imread('cameraman.tif'); f = figure; ax(1) = subplot(1,2,1); imshow(img) ax(2) = subplot(1,2,2); imshow(i...

plus de 13 ans il y a | 1

Réponse apportée
Problem with origin and plotting axes
Is this what you're looking for? >> x = [-0.5 0.5 0.5 -0.5]; >> y = [-0.5 -0.5 0.5 0.5]; >> plot(x,y,'ro') >> axis...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Day of year to month
How about this? D = datevec(datenum(1992,1,1:1/24:365, 0,0,0)); Cheers, Brett

plus de 13 ans il y a | 0

Réponse apportée
Inserting numbers into a vector
Michael, See if you can figure it out from this response: <http://www.mathworks.com/matlabcentral/answers/1085-inserting-a-c...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
inverse Fourier transform
Look at the dimensions of your z matrix. (size(z)). Then make sure the number of x values matches the first dimen Consider: ...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Accessing Hyperspectral Images Using MATLAB
If the images are stored in .mat files, you should be able to LOAD them with core MATLAB--no special Wavelet-reading functions n...

plus de 13 ans il y a | 1

| A accepté

Réponse apportée
Create workspace file automatically.
I think you mean "variable," not "file." Right? for ii = 1:numel(a) eval(sprintf('%s = %d',a{ii},b(ii))); end Chee...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Day of year to month
If you have 365 days, for instance, but no month information, you can simply increment the DAY position in datenum: mydate...

plus de 13 ans il y a | 0

Réponse apportée
Determining whether a point on earth (given latitude and longitude) is on land or ocean
I think this will do it. It is a binary classifier: Ocean/Land. coast = load('coast.mat'); [Z, R] = vec2mtx(coast.lat,...

plus de 13 ans il y a | 2

Réponse apportée
finding a closed region
Create a mask of your regions (blobs). Then use the fourth syntax of <http://www.mathworks.com/access/helpdesk/help/toolbox/imag...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
finding the length of a pendulum in motion
property = regionprops(lab,'Centroid') returns a struct, the fields of which correspond to each ROI (blob) in lab. To convert th...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
.Fig to .m file
Lina, From your GUIDE-built GUI, pull down from the File menu to EXPORT. That should generate a MATLAB file that will recreat...

plus de 13 ans il y a | 2

Réponse apportée
executable file without supporting file?
When you build your application (using Deploytool, for instance), you will need to provide hard links to the supporting dll's. T...

plus de 13 ans il y a | 0

Réponse apportée
feature extraction
Hi Shiwani, I frequently present an advanced image processing course with coin recognition as the over-arching goal. Here are...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Is there some function in Matlab with which I can dilate only a small ROI in the image?
Actually, it doesn't really matter how the ROI is defined, nor what shape it is. The function <http://www.mathworks.com/help/too...

plus de 13 ans il y a | 1

Réponse apportée
How do I programatically control Power Point from MATLAB?
Also: If you're interested in "going the other way," Consider looking at this <http://www.mathworks.com/matlabcentral/fileexchan...

plus de 13 ans il y a | 0

Réponse apportée
Morphology operator
Nilushi, The Image Processing Toolbox (IPT) function BWMORPH(BW,'fill') operates only on 2D matrices. But IMFILL(BW,'holes') ...

plus de 13 ans il y a | 0

Réponse apportée
How to react on a change of variable from workspace?
I like Siddharth's answer. But as an alternative, you could create a timer object (help TIMER) that, in its callback, looks at t...

plus de 13 ans il y a | 1

Réponse apportée
How do I get the percentage of individul color of a color image?
Aditya, If your image is binary blue / red, this is easy. Otherwise, you need to define what is "red" (is it [1 0 0]?) and what...

plus de 13 ans il y a | 0

Charger plus