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

circa 12 anni fa | 3

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

circa 12 anni fa | 0

| accettato

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

oltre 12 anni fa | 0

| accettato

Risposto
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(:...

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

| accettato

Risposto
How can delete a variable within a netcdf file
_"Attributes are more dynamic than variables or dimensions; they can be deleted and have their type, length, and values changed ...

oltre 12 anni fa | 0

Risposto
How do I process this netcdf file?
It looks like you have already discovered |ncdisp|, have a look at other functions in the same family: <http://www.mathworks.com...

oltre 12 anni fa | 0

| accettato

Risposto
Regarding file convertion from one format to another format?
First, read the data into MATLAB using |fopen| and |fread|. You could then use the |nc*| family of functions like <http://www.ma...

oltre 12 anni fa | 0

| accettato

Risposto
NETCDF GIS coupling creationg problems
I am not familiar with arcGIS, does it show you the variable dimensions? Does it expect time to be first or the last dimension? ...

oltre 12 anni fa | 0

Risposto
Problem with change a files whitin netcdf
Try the <http://www.mathworks.com/help/matlab/ref/netcdf.renamevar.html |netcdf.renamevar|> function. The doc page in the link h...

oltre 12 anni fa | 0

| accettato

Risposto
How to fill inside of binary region?
How about connected component analysis? Use <http://www.mathworks.com/help/images/ref/regionprops.html |regionprops|> to obtain ...

oltre 12 anni fa | 0

Risposto
How do I call BLOCKPROC with more than one input image?
Have a look at the _Definitions_ section of the <http://www.mathworks.com/help/images/ref/blockproc.html |blockproc|> doc. Consi...

oltre 12 anni fa | 0

Risposto
How to superimpose images?
Give <http://www.mathworks.com/help/images/ref/imfuse.html |imfuse|> a try.

oltre 12 anni fa | 0

Risposto
Image segmentation using active contour toolbox
I am not familiar with the toolbox you mention. If you have a current version of MATLAB, have a look at <http://www.mathworks...

oltre 12 anni fa | 0

| accettato

Risposto
Converting multispectral images to single RGB image
Greg, I am not too familar with this domain - have a look at <http://www.mathworks.com/help/images/ref/makecform.html |makecform...

oltre 12 anni fa | 0

Risposto
Extracting individual maps from netCDF files
What is the size of the variable? ( <http://www.mathworks.com/help/matlab/ref/ncdisp.html |ncdisp|> might help). If you have ...

oltre 12 anni fa | 0

Risposto
Does different image parameters affect image registration?
Difference in spatial resolution differece might explain the poor registration. You could specify the image spacing using us...

oltre 12 anni fa | 0

Risposto
Passing byte array to Matlab as if read by imread
I assume you are using the MATLAB compiler to wrap MATLAB functions into a C-callable DLL. Have a look at this <http://www.mathw...

oltre 12 anni fa | 0

Risposto
Advice for Speeding Up TIFF concatenation
First, try familarizing yourself with the <http://www.mathworks.com/help/matlab/ref/profile.html |profile|> tool. That will help...

oltre 12 anni fa | 0

Risposto
Time complexity of built in functions in matlab ( imdilate, imerode, histeq, adapthisteq) which I can use in my program
These function might have multiple internal code paths for different sizes/datatypes/syntax. These paths might have different im...

oltre 12 anni fa | 1

| accettato

Risposto
Query regarding webcam in matlab
ANy webcam which works is detected and works with your OS ought to work: <https://www.mathworks.com/products/imaq/supported/g...

oltre 12 anni fa | 0

| accettato

Risposto
Computer Vision and Image Acquisition for mobile computing
What are your: * Budget constraints * Power constraints? (Battery or always on AC power? * Performance constraints? I cant ...

oltre 12 anni fa | 0

Risposto
Greyscale an image via replacing pixels
% air code (untested) red = fit(:,:,1); green = fit(:,:,2); blue = fit(:,:,3); isblue = blue>250; % Use log...

oltre 12 anni fa | 1

Risposto
How to convert an ASCII to NetCDF?
Hope this helps you get started: %% set up dummy data fid = fopen('tmp.mat','w'); fmtStr = repmat(' %f',[1,13...

oltre 12 anni fa | 0

Risposto
How to extract information from h5disp?
What data are you trying to extract? |h5info| will return the same content as the disp, but in the form of a structure. While...

quasi 13 anni fa | 0

| accettato

Risposto
Runtime loading of shared libraries
Use <http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html ldconfig> or use MATLAB's <http://www.mathworks.com/help/...

quasi 13 anni fa | 0

Risposto
Extracting subsets of structs from HDF5 files
Steve, You would have to use the low-level functions. I believe it can be done, but its a bit more complex than what I could ...

quasi 13 anni fa | 0

Risposto
I have a problem with ncread, OPeNDAP and 4-dim data
Remon, I am not sure what is happening here. The error code appears to indicate a server side error <https://www.unidata.ucar.ed...

quasi 13 anni fa | 0

Risposto
Opening netcdf - Only displays one cell
Grant, To read data, your best bet is to use <http://www.mathworks.com/help/matlab/ref/ncread.html |ncread|>. >> landcov...

quasi 13 anni fa | 0

Risposto
how to read a time series data at a particular (x, y) grid cell in a netcdf file
Look at <http://www.mathworks.com/help/matlab/ref/ncread.html |ncread|> (and <http://www.mathworks.com/help/matlab/ref/ncdisp....

quasi 13 anni fa | 2

Carica altro