photo

Jürgen


Attivo dal 2012

Followers: 0   Following: 0

Messaggio

Statistica

MATLAB Answers

16 Domande
37 Risposte

RANK
1.356
of 300.028

REPUTAZIONE
53

CONTRIBUTI
16 Domande
37 Risposte

ACCETTAZIONE DELLE RISPOSTE
75.0%

VOTI RICEVUTI
15

RANK
 of 20.860

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 167.043

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • First Review
  • Thankful Level 3
  • Knowledgeable Level 2
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
Inserting excel files from different folders for different processing
Hi, your question looks similar to: http://www.mathworks.com/matlabcentral/newsreader/view_thread/274014 regards,J

quasi 12 anni fa | 0

| accettato

Domanda


The threshold of sobel
Hi, I am trying to find how the sobel threshold is defined: I found : determine the threshold; see page 514 of "D...

quasi 12 anni fa | 1 risposta | 0

1

risposta

Domanda


How to define color accuracy of an image system
Hi, I am working in image analysis but until now I have very little experience in color measurements. I need to measure the...

quasi 12 anni fa | 1 risposta | 0

1

risposta

Risposto
increasing the launch angle of projectile so it reaches a certain distance
Hi, I admint I did not check all your code, but if you want something like: theta= Value; thetaStep= StepValue; ...

oltre 12 anni fa | 0

Domanda


Title disappears sometimes somtimes not
Hi, I generate a subplot with the code below. Normally that gives me 8 subplots with a title but for some subplots the title d...

oltre 12 anni fa | 1 risposta | 0

1

risposta

Risposto
How to calculate the energy of an image and what is the unit of that energy ?
Hi, maybe ths helps: http://www.mathworks.com/matlabcentral/fileexchange/13837-meanstdenergy-of-imagecumulative-gray-level-d...

quasi 13 anni fa | 0

Domanda


Term matrix and regression model formula
hey, am not sure about the way the regression model is formulated in the help file this model is proposed 'MPG ~ Acceleratio...

quasi 13 anni fa | 0 risposte | 0

0

risposte

Risposto
What is the problem in these code?
Hi, sum(a(:,:,x) (:,1:2:end),2); is not correct , I think What do you want to do there? '(:,1:2:end)' is referring to the...

quasi 13 anni fa | 0

Domanda


Which matlab function can be used to compare spatial distribution grids?
Hi, I have two spatial distributions in a grid, so lets say a 40 x 70 matrix: each grid has the same dimensions e.g. 0.250 m...

quasi 13 anni fa | 1 risposta | 0

1

risposta

Risposto
multiple if statements in matlab
Hey, difficult to check it without example values but if I understand it well you are comparing a column vector p to a column...

quasi 13 anni fa | 0

| accettato

Risposto
How to correct the assignment Error?
Hi, there is a function: imhist(I) , quite useful for this work, + if you want to calculate the hist by summing for each va...

quasi 13 anni fa | 0

Risposto
Solving homogeneous linear set of equations
seems a similar question: http://www.mathworks.com/matlabcentral/newsreader/view_thread/242711 and http://www.mathworks.nl/h...

quasi 13 anni fa | 2

| accettato

Risposto
Selecting data points in 3D space
Hi, in file exchange there is a file to extract a Volume of Interest, do no if that can help? regards,J

quasi 13 anni fa | 0

Risposto
noise removal in Image
Ok so I indeed did not understand your question, I got interested and just did some googling: first found a paper: http://www...

quasi 13 anni fa | 0

Risposto
noise removal in Image
Hi, first, quite a challenge to understand your question? did you check ' How to remove noise? or something like that in ma...

quasi 13 anni fa | 0

| accettato

Risposto
How can I find an object distance in an image??
hi, first Your question is not clear? second, on a single image you can not extract object distance,=> you need stereovision, o...

quasi 13 anni fa | 1

Domanda


testing collinearity with algorithm collinear7
Hi, I was looking for an algorithm to test collinearity and found : http://blogs.mathworks.com/loren/2008/06/06/collineari...

quasi 13 anni fa | 1 risposta | 0

1

risposta

Risposto
detect and fit curved lines in an image
Hi, Hough Transform can also be used for detecting curves:http://faculty.washington.edu/cfolson/papers/pdf/cviu99.pdf reg...

quasi 13 anni fa | 0

Risposto
Check if matrix contains zero or not and ...
http://www.mathworks.com/matlabcentral/newsreader/view_thread/255797

quasi 13 anni fa | 0

Risposto
How to change a variable within an equation in a loop?
do you mean for Counter=1: 48 s=[ 1 0 -1 F(i)] p(i)=roots(s) end probably I misunderstood becaus ethis seems to simpl...

quasi 13 anni fa | 0

| accettato

Risposto
Angles from XY coordinates from a matrix
Hi, two possibilities if you want to process a lot of data : you can use loops or vectorize, in this case, with few i...

quasi 13 anni fa | 0

Risposto
how to adjust the size of the cross
Hi, if your are talking about markers, then the answer is yes, you can set the marker size e.g. from the help docs: plot(x...

quasi 13 anni fa | 1

| accettato

Risposto
plotting two curve in one axes
use the hold function hold on for example will help regardsJ

circa 13 anni fa | 0

Risposto
Linear plot to contour plot
Hi, to make a contour plot you need two dimensions, since you only have r the radius it won't work You need the (x,y) c...

circa 13 anni fa | 0

Risposto
Differences between script and function file
Hi, the coding between script file and function is the same, only the header is different let's say I make in a script ...

circa 13 anni fa | 0

Risposto
i am new to the image processing. i need help for deblurring the below blurred image.
Hi, If you're new take a look at : <http://www.mathworks.nl/products/demos/image/ipexblind/ipexblind.html> regarsJ

circa 13 anni fa | 1

Risposto
Surface of a equation
[x,y,z] = sphere(); r = 5; figure,surf( r*x +cx, r*y+ cy, r*z +cz) wit (cx,,cy,cz) the center look at http://www.mathworks....

circa 13 anni fa | 0

Risposto
I can not return real values
I think this code does what you want or no what I think that you want :-) Of course much nicer if you make a function of it ...

circa 13 anni fa | 0

Risposto
I can not return real values
I am not sure if I get it , is not so clearly explained but I would work with the length of the OriginalVector of size(OriginalV...

circa 13 anni fa | 0

Risposto
Median filter for rgb images
Hey, I would perform it on one of the channels depinding on which features afterwards you want to extract, or perform it on ...

circa 13 anni fa | 0

Carica altro