
Constantino Carlos Reyes-Aldasoro
City, University of London
Senior Lecturer in Biomedical Image Analysis at City, University of London. Huge Matlab fan, wrote the book "Biomedical Image Analysis Recipes in MATLAB: For Life Scientists and Engineers" published by Wiley-Blackwell.
Statistics
RANK
294
of 262.483
REPUTATION
256
CONTRIBUTIONS
2 Questions
157 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
45
RANK
2.740 of 17.973
REPUTATION
556
AVERAGE RATING
3.70
CONTRIBUTIONS
18 Files
DOWNLOADS
70
ALL TIME DOWNLOADS
4954
RANK
of 113.502
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
Content Feed
How to use OpenCV imopen in Matlab?
Why don't you use matlab's native imopen function? https://uk.mathworks.com/help/images/ref/imopen.html
2 días ago | 0
Read the text files names are already in the table
If they are inside a folder, you could read the files in the folder and then loop over those files. If you have the names and ...
2 días ago | 0
Converting binary to image file
You are mixing many things. If you use 'sobel' between single quotes you are using a string with the characters s o b e l. ...
5 días ago | 0
Deep Network Designer with dicom images
DICOM is treated differently than normal images as you will have many fields related with the images (like patient data). Have y...
5 días ago | 0
| accepted
how to view 4D-single Image
Hello It depends very much what you want and where you data comes from. A 4D data set may be a 3D + time data set and thus you ...
alrededor de 1 mes ago | 0
Weird characters when editing figure
I would suggest that you do not edit the text of figures. The whole idea of using Matlab instead of photoshop/gimp/illustrator i...
alrededor de 1 mes ago | 0
Bar graph and "stacked" options.
This is solved easily by adding zeros in the columns that you do not want a stack, e.g. bar ( [1 2 3;0 2 3;0 0 6]','stacked')...
alrededor de 1 mes ago | 1
| accepted
Loading multiple datafiles into MATLAB and plotting a colourmap
In Matlab, the command "colormap" corresponds to the color/colours that are assigned to the intensity of a figure. You display 2...
alrededor de 1 mes ago | 0
Problem saving plot as jpg or pdf
You could try to add the legend outside the actual axes, e.g. 'eastoutside', have a look here: https://uk.mathworks.com/help/ma...
alrededor de 1 mes ago | 1
| accepted
Grain Model how to remove smaller grains
Ok, I think now I understand your problem. I thought you had information on the grains themselves, but if you are starting with ...
alrededor de 2 meses ago | 0
Grain Model how to remove smaller grains
A bit difficult to help more without the data but I think that your problem can be fixed by selecting your grains by the propert...
2 meses ago | 0
how to find index in matrix and average data ?
You can try the following, instead of "finding" the locations, which will be the indices, just use the locations like this: sst...
3 meses ago | 0
| accepted
How to make a loop inside a loop?
Difficult to answer without more context, but I suspect that the error is not related to the loops but something else. There are...
3 meses ago | 0
Hough transform incorrectly identifying vertical line segments
Ok, 2 things, you are first comparing and then subtracting, which may be counteracting, you could calculate hough directly like ...
3 meses ago | 0
Hough transform incorrectly identifying vertical line segments
Have you tried inverting the intensities of the image? As it is, white is the main element and that will be difficult to obtain ...
3 meses ago | 0
Why are title and label not working on histogram?
You are using the commands incorrectly, by writing title = ('Temperatures @ Top') you are creating a new variable called title w...
3 meses ago | 0
| accepted
Change variable name in plot
As mentioned before, this is not the best way to handle your data, BUT you are where you are, so to be able to use the names run...
3 meses ago | 0
2D color map change the input of y axis
Hello There are 2 ways to change the values of the y axis, first is to change the values when you plot. I do not have your fi...
3 meses ago | 0
| accepted
Asignar matriz automaticamente.
Hola Primero te recomendaria escribir en ingles para aumentar la posibilidad de que respondan las preguntas. Segundo, para que ...
3 meses ago | 1
Filter out small dust in image!
Where exactly are the rocks that you want to count? There is a lot of green but I cannot immediately see any rocks.
4 meses ago | 0
Bar Plot Legend and Axes
Hi First, to plot the subplots together, you need to grab the handles of each axes, i.e. figure h1=subplot(141); h2=subplo...
5 meses ago | 0
Smoothing colormap of plotted image
If you only want to smooth the final data, you can try with filters, e.g. imagesc(medfilt2(abs(Y),[5 5 ])) imagesc(imfilt...
5 meses ago | 1
| accepted
How to calculate the centroid / center of a patch?
The data X,Y must have been previously calculated from some raw data, say a thresholded figure, it is from that data you can eas...
5 meses ago | 2
Error of the following code : "Array indices must be positive integers or logical values."
Not very clear, what are length_ijk and index_ijk? in the files you have added, miu has 262144 values, ind has 77 and freq has 6...
7 meses ago | 0
Not able to write the image by reading xcel files generated , getting error of data type as shown in picture attached. Anybody please help.
This is not very clear, it would be better to copy the code instead of figures and provide a sample file so that the case can be...
7 meses ago | 0
How to add colormap on an image?
I guess that this is a 2 step question, you want to add a colormap and then export as a png or jpeg, try the following, read an ...
8 meses ago | 0
What is a good performance metric for pixels classification tasks
One good metric is the Jaccard Index, or the Intersection over Union. What this metric does is to divide true positives over th...
8 meses ago | 0
| accepted
Does anyone know how to create graphics of the same size?
Hello You can use the command "print" https://uk.mathworks.com/help/matlab/ref/print.html?searchHighlight=print&s_tid=srcht...
8 meses ago | 0
double data type in image processing
Another easy way around this is to divide the doubles by 255 X=imread('cameraman.tif'); %read the cameraman image X=doubl...
9 meses ago | 1
Random shuffle of vector elements
This can be easily done by addressing the vector correctly. First you need a random order to shuffle your elements. You can do t...
10 meses ago | 1
| accepted