Statistics
RANK
7,012
of 295,410
REPUTATION
6
CONTRIBUTIONS
0 Questions
7 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
3
RANK
1,481 of 20,224
REPUTATION
1,253
AVERAGE RATING
5.00
CONTRIBUTIONS
11 Files
DOWNLOADS
96
ALL TIME DOWNLOADS
10307
RANK
of 153,822
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
How to convert the MATLAB code into the Python?
You may want to check these tutorials on how to convert a code from MATLAB to python. https://www.youtube.com/watch?v=OV9A72IC...
2 years ago | 0
Using a for loop to put a number of 2D arrays in a directory into a single 3D array
If your images are PNG and located in a folder, just run this code on that folder. 'A' is the resulted matrice: D=dir('*.png');...
5 years ago | 1
Graph visualization adding white to my nodes. How to solve it?
This is a visual artifact I assume. Try add Edge Color to your nodes. It could help.
5 years ago | 0
Index a 2D matrix from a 2D matrix
Well you can simply do this without a loop: A=rand(600,1000); B=A(1:51,1:51); But if you need it to use loops B=zeros(51); ...
5 years ago | 0
Count centroids in an image
Why not simply label the binary image? and 'Num' would be the number of characters. [Label, Num]=bwlabel(Image)
5 years ago | 1
find mutual information between series of images
Hi, why dont you save the MI values inside an array like this: and then find the location of the maximum value. Image_Address=...
5 years ago | 0
How to remove dependent rows in a matrix?
This is a shorter version of Jos solution if you needed: R1=1; for I=1:size(A,1) R2=rank(A(1:I,:)); if R2~=R1; disp...
5 years ago | 1