photo

Massimo Zanetti


Last seen: etwa ein Jahr vor Aktiv seit 2016

Followers: 0   Following: 0

Nachricht

I have received the M.S. degree in Mathematics from the University of Ferrara, Italy and the Ph.D. in Information and Communication Technologies at the University of Trento, Italy. My research interests include variational methods to segmentation, numerical optimization, remote sensing image processing, change detection in remote sensing images.

Statistik

All
MATLAB Answers

2 Fragen
260 Antworten

File Exchange

2 Dateien

Cody

12 Probleme
1301 Lösungen

RANG
88
of 300.857

REPUTATION
1.722

BEITRÄGE
2 Fragen
260 Antworten

ANTWORTZUSTIMMUNG
50.0%

ERHALTENE STIMMEN
631

RANG
9.504 of 21.097

REPUTATION
74

DURCHSCHNITTLICHE BEWERTUNG
4.80

BEITRÄGE
2 Dateien

DOWNLOADS
2

ALL TIME DOWNLOADS
448

RANG
105
of 171.361

BEITRÄGE
12 Probleme
1301 Lösungen

PUNKTESTAND
11.510

ANZAHL DER ABZEICHEN
10

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Triathlon 1st Place
  • Scavenger Finisher
  • Thankful Level 1
  • Guiding Light
  • Quiz Master
  • CUP Challenge Master
  • First Review
  • 5-Star Galaxy Level 3
  • First Submission
  • Revival Level 1
  • Knowledgeable Level 5
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Read/write georeferenced image
Hi, here I am wondering why this simple operation of reading a georeferenced .tif image and writing some results in the same geo...

mehr als 3 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


imadjust low_in high_in, why only in the range [0,1] ?
Hello, it looks a bit strange that the function imadjust accepts, other than single/double numeric types, also integer types, bu...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
what is the meaning of this error?
Here the problem is not related to Matlab.. As far as I know opening a pdf from command line in Windows goes like this: path...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
Convert Cell to Struct
<https://it.mathworks.com/help/matlab/matlab_prog/access-data-in-a-structure-array.html>

mehr als 8 Jahre vor | 0

Beantwortet
Moving a greyscale image such that the lowest pixel with an intensity above 0 is at the bottom of the image.
Use the |circshift| function, which shifts arrays along one dimension. Here is an example: %generate an image (matrix) A...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
How to fit multiple Gaussian functions in image without using the Curve fit GUI?
Hi Mishra, here it the function you need <https://it.mathworks.com/help/stats/fitgmdist.html fitgmdist>. It does fitting u...

mehr als 8 Jahre vor | 1

Beantwortet
Matlab Training Course on your own: do we get a certificate? Which documentation is provided?
Hi Jesus, you can find all info about matlab certifications at: <https://it.mathworks.com/services/training/certification.h...

fast 9 Jahre vor | 1

| akzeptiert

Beantwortet
how to read a textfile that contain an array of text values into matrix
Here is it, you should know how many columns your data span (I guessed by reading your file they are 25): %open file fna...

fast 9 Jahre vor | 1

Beantwortet
convert fixed point to real data
Does this help you? %get sfi a = sfi(pi); %convert to double d = double(a)

fast 9 Jahre vor | 0

Beantwortet
How to crop a square that has a rotational angle?
Inspect this: <https://it.mathworks.com/help/images/ref/roipoly.html roipoly> Here is an example of what you can do: %op...

fast 9 Jahre vor | 2

Beantwortet
How to enhance an image with respect to an image of much better quality.
Try considering this: <https://it.mathworks.com/help/images/ref/imhistmatch.html histogram matching>

fast 9 Jahre vor | 0

Beantwortet
Partial transparent surface plot
Play with Chart Surface Options: <https://it.mathworks.com/help/matlab/ref/chartsurface-properties.html> You can set |Alpha...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
How to make a curve smooth in spline block
If you want to approximate a set of points by a smooth curve you need a *smoothing spline*, not just a *spline*. Moreover, in yo...

fast 9 Jahre vor | 0

Beantwortet
Discard elements from structure array
There is a specific function to remove a field from a structure: <https://it.mathworks.com/help/matlab/ref/rmfield.html rmfield>...

fast 9 Jahre vor | 0

Beantwortet
Display values with fprintf
Here it is ret = 0.000065003; std = 0.0207; fprintf('The return is %.4e and the standard deviation is %.4f \n',ret,st...

fast 9 Jahre vor | 1

Beantwortet
How do I integrate this set of matrix data points
You just need one |for| loop as |trapz| operates also on matrices. This is the piece of code: A = rand(32); B = zeros(32...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
Multiple .txt input files
Use |dir| function to list files with .txt extension %list folder files files = dir('*.txt'); and put your code in...

fast 9 Jahre vor | 1

| akzeptiert

Beantwortet
Cross correlation Between two matrices row by row
There are some issues in your code. # |crosscorr| function requires two vector inputs. |Ain01_correct(i,2)| it is not (it is ...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
Please help me in generating a random string(row vector) in which each element has a different upper bound.
The useful way is U = [2,3,4,5,7]; A = arrayfun( @(x) randi([0,x]) , U ) but, if upper-bounds are 1-digit numbers, y...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
How to display and delete different line in graph when checkbox check and uncheck
Yuo may find it useful reading these tutorials <https://it.mathworks.com/help/matlab/creating_guis/about-the-simple-guide-gui-ex...

fast 9 Jahre vor | 0

Beantwortet
Error: Undefined function <func_name> for input arguments of type 'double'.
Refer to your 2nd line of code fhd = str2func('f1'); The string |'f1'| evaluates to nothing in Matlab, therefore the com...

fast 9 Jahre vor | 0

Beantwortet
How do i represent a set of clusters points in scatter plot?
Hi, what you need is exactly Matlab <https://it.mathworks.com/help/stats/gscatter.html GSCATTER> function. Check out the help pa...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
How to plot a mean value as a function of specific value pairs ?
First, notice that in Matlab |a=[ [1 2], [2 3], [4 5] ]| equals |a=[1,2,2,3,4,5]|. I guess, you meant to associate each entry of...

fast 9 Jahre vor | 0

Beantwortet
Binary file reader using fread function
The |fread| function read data in binary format, thus sequences of 0s and 1s. Therefore, you can read raw data just as a sequenc...

fast 9 Jahre vor | 1

Beantwortet
How to plot a function file
Check out the |stairs| function <https://it.mathworks.com/help/matlab/ref/stairs.html>

fast 9 Jahre vor | 0

Beantwortet
Why is probplot not plotting the reference line for one matrix column?
The problem is not due to -0 (which is the same as 0). It seems that your data in the first column are not even close to be Gaus...

fast 9 Jahre vor | 1

Beantwortet
3D surface plot from for loop
Most probably you don't want to plot a surface, instead a plot of a line in a 3D space. Try this: plot3(ang,Lp,d); grid on;...

fast 9 Jahre vor | 0

Beantwortet
How to detect & remove steps from signal?
Differentiate your signal (function |diff| in Matlab). The steps are located at points where first derivative is very high. Once...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
how to concatenate mat files of different row sizes but same column size vertically?
In this line of code: Fv_ROI_concatenated = [a.TwoD_fv_roi_rangefilt_bdip,b.TwoD_fv_roi_rangefilt_bilateral,c.TwoD_fv_roi_r...

fast 9 Jahre vor | 0

Beantwortet
Better skeletonization of an image to found branchpoints
Dilate your image before skeletonize it. Try this: %read image G = imread('grid.jpg'); G = im2bw(rgb2gray(G)); %di...

etwa 9 Jahre vor | 0

Mehr laden