A répondu
Problem with imshow command
Which |imshow| are you using? line 25 of the toolbox version does not appear to have an |fopen|. Try |which -all imshow|. You...

presque 9 ans il y a | 0

A répondu
Why do I need to add some addtitional files for the generated c code like "libmwbwpackctbb.h"?
Some of these functions use a <http://www.mathworks.com/help/images/list-of-supported-functions-with-usage-notes.html library> t...

environ 9 ans il y a | 2

A répondu
Use cell array to get inputs
The new <http://www.mathworks.com/help/images/batch-processing-using-the-image-batch-processor-app.html |image batch processor|>...

environ 9 ans il y a | 0

A répondu
How to show a sequence of images
You could try using the <http://www.mathworks.com/help/images/batch-processing-using-the-image-batch-processor-app.html |image b...

environ 9 ans il y a | 0

A répondu
Scan through an image to detect the mid points of 2 grey regions
See if this gives you any ideas: %% im = imread('/tmp/t.png'); imtool(im); % RGB? gray scale im = rgb2gray(...

environ 9 ans il y a | 0

| A accepté

A répondu
How to apply pixel shift to individual pixels in image file?
Have a look at the displacement field syntax of <http://www.mathworks.com/help/images/ref/imwarp.html#inputarg_D |imwarp|>. Depe...

environ 9 ans il y a | 2

| A accepté

A répondu
Why am I unable to call the ncread function to read NetCDF files?
Pedro, you might not have the latest version of MATLAB. |ncread| was first shipped with R2011a. If possible, consider upgrading....

environ 9 ans il y a | 0

A répondu
How to edit a particular variable in a netcdf file?
You could use the <http://www.mathworks.com/help/matlab/ref/ncwrite.html ncwrite> function to overwrite the variable.

environ 9 ans il y a | 0

| A accepté

A répondu
Take coordinate data from struct, throw it into an array. Why is this hard to find info about?
Does this help? (If not, use this example code to show how you want your Centriod variable to look like) stats = regionpro...

environ 9 ans il y a | 0

| A accepté

A répondu
NetCDF file grid box extraction
I got this far.. then realized no exact match exists for that lat/lon. So, conceptually, what do you want to do? Pick a point cl...

plus de 9 ans il y a | 0

A répondu
Image area calculation and edge detection...
If you have the latest version, try out the <http://www.mathworks.com/help/images/image-segmentation-using-the-color-thesholder-...

plus de 9 ans il y a | 0

A répondu
How to save a Tiff using signed values with LibTiff library.
You need one extra tag: intFinalImage = int16(magic(10)); tiffFile = 't.tif'; t = Tiff(tiffFile,'w'); %-------...

plus de 9 ans il y a | 2

| A accepté

A répondu
How do I write a netcdf file that ncdump and cdo/GrADS will understand?
James - my guess is that the other utilities you are using are based on an older version of the NetCDF library - they do not rec...

plus de 9 ans il y a | 2

| A accepté

A répondu
Memory Usage and block proc
blockproc will not read the full image, it ought to only read one tile each. However, since your file system is serial, the fina...

plus de 9 ans il y a | 0

A répondu
I am able to read the netcdf file format. But how to calculate average? Suppose I have to calculate the average from 1st January to 5th January, then again 6th January to 10th January and so on.....Below is the program to read the values.
I assume you know about <http://www.mathworks.com/help/matlab/ref/mean.html |mean|> but want to find out how to index into a net...

plus de 9 ans il y a | 0

| A accepté

A répondu
Example 3D netcdf data
If you assume net connection, your example could "download" it. MATLAB can read <http://docs.opendap.org/index.php/Dataset_List ...

plus de 9 ans il y a | 1

A répondu
How to create Linear structuring element in morphological operations
Use <http://www.mathworks.com/help/images/ref/strel.html#bqkf9de |strel|>.

plus de 9 ans il y a | 0

A répondu
How can i create a NetCDF file ?
Felipe, Consider starting with the example in the <http://www.mathworks.com/help/matlab/ref/nccreate.html |nccreate|> doc page ...

presque 10 ans il y a | 0

| A accepté

A répondu
character recognition
How about <http://en.wikipedia.org/wiki/Template_matching template matching>? Look at a demo, the corresponding source code s...

presque 10 ans il y a | 0

A répondu
How to extract the data from .nc file based on longitude and latitude,time?
The nc* functions and the netcdf.* functions represent two independent ways to access a NetCDF file. I would recommend sticking ...

presque 10 ans il y a | 0

| A accepté

A répondu
why does hdf5read function return only 4 decimal places instead all numbers
Look at the documentation for <http://www.mathworks.com/help/matlab/ref/format.html |format|>. >> hinfo = hdf5info('test....

presque 10 ans il y a | 0

| A accepté

A répondu
How we can check for more than one edge passing through a pixel
When looking for 3x3 (or 2x2) patterns, BWLOOKUP is usually faster and more flexible: function bw = multiedge(bwedge) ...

environ 10 ans il y a | 0

A répondu
extract portion of netCDF file based on latitide and longitude
Try using <http://www.mathworks.com/help/matlab/ref/ncdisp.html |ncdisp|> first to look at the structure of your file. Usually...

environ 10 ans il y a | 0

| A accepté

A répondu
Output argument "pixel_location" (and maybe others) not assigned during call to ......
Setting pixel_location to empty ([]) in the else might be the right thing to do. MATLAB often uses [] to indicate 'nothing found...

environ 10 ans il y a | 0

A répondu
Imageprocessing tool of matlabR2010 doesnot contain 'getHSVColorFromDirectory' function
getHSVColorFromDirectory is not a MATLAB function. Please contact the author of the code you are trying to execute to resolve th...

environ 10 ans il y a | 0

A répondu
save images as tif 32 bits by using imwrite
Soum, did you click on the documentation link? Andreas was talking about the Tiff class, which is a different interface than IMW...

environ 10 ans il y a | 3

A répondu
How to get INTENSITY along a spcific curve?
You could try using <http://www.mathworks.com/help/images/ref/improfile.html |improfile|>, it will let you draw the cirle and th...

plus de 10 ans il y a | 0

| A accepté

A répondu
Builder JA Error with private file (dicominfo)
Chris: _The problem turned out to be Java 1.7 being incompatible with Matlab2013a. The documented examples like computing t...

plus de 10 ans il y a | 0

| A accepté

A répondu
How do I optimize this code to run efficiently on the GPU?
A quick 'air' code using <http://www.mathworks.com/help/distcomp/pagefun.html |pagefun|>: tic M = pagefun(@mtimes, A(:...

plus de 10 ans il y a | 0

A répondu
How can i convert an ASCII file to NetCDF?
Kopparthi, I assume you meant to upload only the meta data in the text file. I am not familiar with ADCP so I am not sure how yo...

plus de 10 ans il y a | 0

| A accepté

Charger plus