photo

Jurgen


VU University

Con actividad desde 2012

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

10 Preguntas
42 Respuestas

File Exchange

7 Archivos

Cody

0 Problemas
13 Soluciones

CLASIFICACIÓN
885
of 300.352

REPUTACIÓN
88

CONTRIBUCIONES
10 Preguntas
42 Respuestas

ACEPTACIÓN DE RESPUESTAS
60.0%

VOTOS RECIBIDOS
31

CLASIFICACIÓN
3.697 of 20.928

REPUTACIÓN
411

EVALUACIÓN MEDIA
4.50

CONTRIBUCIONES
7 Archivos

DESCARGAS
12

ALL TIME DESCARGAS
4024

CLASIFICACIÓN
32.607
of 168.212

CONTRIBUCIONES
0 Problemas
13 Soluciones

PUNTUACIÓN
140

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Personal Best Downloads Level 1
  • First Review
  • 5-Star Galaxy Level 1
  • First Submission
  • Thankful Level 3
  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
Reading a select number of characters from a string
If you don't want to convert to char type: extractBetween and it's brethren work on the newer string datatype.

casi 6 años hace | 4

Pregunta


Check if property is dependent
I'm trying to write a method that checks if the non-dependent properties of a class are initialized properly. Using ` fieldnames...

casi 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Concise way to compare/find multiple values
If I have a matrix of integers called A and want to find the mask corresponding to values 1 and 7, I currently do this: mask ...

casi 8 años hace | 1 respuesta | 1

1

respuesta

Pregunta


Extend scope of variables to other local functions
I have a function that uses a few helper functions. I'd like these helper functions to have access to variables without: * pa...

alrededor de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Select visual studio compiler with mex
I have visual studio 2015 (community) installed. It can compile C++ fine. Do I still need the Windows SDK to use mex, or is ther...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Convert binary ROI to polygon
I have a binary image with a concave polygon drawn in a paint application. Using find() I get a set of points, but they aren't o...

más de 9 años hace | 3 respuestas | 0

3

respuestas

Respondida
How to divide a matrix into smaller matrices
A cell type can hold several matrices, so splitting your matrix should output a cell. Mat2cell has syntax that let's you carve u...

más de 10 años hace | 0

Respondida
problem in image resizing
Have you tried .bmp? I think that does not use compression. It should be slightly greater than 100KB due to the header.

más de 12 años hace | 0

| aceptada

Respondida
How can I normalize data between 0 and 1 ? I want to use logsig...
NDATA = mat2gray(DATA);

más de 12 años hace | 17

Respondida
how to choose the value?
I suggest you concatenate the numerical input l1 with the string 'bus'. Then display the content with display(). E.g. X = [...

más de 12 años hace | 0

Respondida
How do I change the image displayed in the axes of a gui?
Agree with Image Analyst, you can use the same command as with the first button to display. Alternatively changing the CData pro...

más de 12 años hace | 1

Enviada


Imsplit
Split image or matrix into subparts using simple syntax.

más de 12 años hace | 2 descargas |

5.0 / 5
Thumbnail

Enviada


Colormix
Combine basic colors with string syntax to create any RGB color.

más de 12 años hace | 1 descarga |

0.0 / 5
Thumbnail

Respondida
convert matrix to rgb
The FEX has mat2im and real2rgb. Can recommend both! <http://www.mathworks.nl/matlabcentral/fileexchange/23342-real2rgb-color...

más de 12 años hace | 1

Respondida
Endometrial cancer detection using Image processing
Since you don't know where the cells are, cropping the images could mean deleting the areas with the cancer cells. So it is your...

más de 12 años hace | 0

| aceptada

Enviada


Valcolor
Apply color CLR to colormap entry pertaining to value VAL. Either scaled or indexed figure.

más de 12 años hace | 1 descarga |

0.0 / 5
Thumbnail

Respondida
Create .mat similar to MRI for image processing
3D display on a 2D screen may not be the best option. Most MRI analysis programs just show slices from several directions. I ...

más de 12 años hace | 0

Respondida
how can i calculate brightness,contrast,hue and saturation of a image?
Assuming its an rgb image, you can do rgb2hsv to find the hue and saturation of pixels. Value is similar to brightness, but you ...

más de 12 años hace | 0

Respondida
Resizing two images to the same pixel dimensions without aspect ratio distortion
Your question is: Can I change the aspect ratio of A to fit that of B without changing the aspect ratio of A? It makes no sense!...

más de 12 años hace | 0

Enviada


Mat2gray variant with dimension option
Normalizes sections of an N-D matrix divided along DIM to the 0.0-1.0 range.

más de 12 años hace | 4 descargas |

0.0 / 5
Thumbnail

Respondida
How to use an absolute scale with colormaps
Yes, just adjust the CLim property of the axes to the desired range. e.g. caxis([0 45]) will map the colors to 0-45 range.

más de 12 años hace | 0

| aceptada

Respondida
To tilt image backwards
Instead of doing it manually, use a for loop, compare with 'correct' reference image (e.g. sum of squared differences) and selec...

más de 12 años hace | 0

Respondida
how to detect noise in an image?
You're not the first: <http://www.mathworks.com/matlabcentral/answers/52882-image-noise-estimation-image-processing> <http...

más de 12 años hace | 1

Respondida
Multiple plot handles to the same figure
Also, maybe figsplit and figmerge may help. <http://www.mathworks.com/matlabcentral/fileexchange/31737-splitmerge-matlab-figu...

más de 12 años hace | 0

Enviada


Zerocolor
Set colormap entry for zero values to specified RGB color

casi 13 años hace | 2 descargas |

0.0 / 5
Thumbnail

Respondida
Can someone help me with my image processing?
I think your problem is similar to a recent post by Steve Eddins: http://blogs.mathworks.com/steve/2012/12/18/counting-object...

casi 13 años hace | 0

Respondida
Image Transformation using Parallel Processing / GPU
Maybe this helps: http://www.mathworks.nl/discovery/matlab-gpu.html

casi 13 años hace | 0

Pregunta


List all toolbox functions
Ive looked around but only found depfun() and which(). But is there a command that lists all functions in a toolbox (excluding d...

casi 13 años hace | 2 respuestas | 1

2

respuestas

Respondida
DO I need Image processing tool box to upload image into GUI
I think this should work? I = imread('file_on_path.jpg') imagesc(I);

casi 13 años hace | 0

Resuelto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

casi 13 años hace

Cargar más