Ilian
Followers: 0 Following: 0
Statistik
0 Fragen
6 Antworten
RANG
3.067
of 295.467
REPUTATION
18
BEITRÄGE
0 Fragen
6 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
1
RANG
of 20.234
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.912
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
column circular permutaion on a matrix
If you just want to rotate the rows this could work: s = -3; % shift (both positive and negative values work) rows = size(A,1)...
mehr als 4 Jahre vor | 0
How do I get a for loop to check a row for conditions?
If you want to use a for loop, you could have a look at if statement with multiple conditions % Your conditions a = 200; b ...
mehr als 4 Jahre vor | 0
| akzeptiert
Calculate the mean of nonzero pixels and set a threshold
If you just have a threshold, you don't even need to ceate an explicit mask: m = mean(volume(volume>=0.001)); % average of all ...
mehr als 4 Jahre vor | 0
crop multiple images with freehand
imcrop should have a rectangle as input, but you have a mask. You could use roi = drawrectangle(); instead of imfreehand and t...
mehr als 4 Jahre vor | 0
| akzeptiert
Changing image background from black to white
You can try using connected components. With relatively simple problems this could work: img_original = imread('image.jpeg'); ...
mehr als 4 Jahre vor | 1
| akzeptiert
remove variables in txt file
You could remove the header line first with something like this: fileID = fopen('p_s.txt'); dataFormat = '%f %s'; C_text = te...
mehr als 4 Jahre vor | 0
| akzeptiert