Hadi Ghahremannezhad
Followers: 0 Following: 0
Estadística
18 Preguntas
0 Respuestas
CLASIFICACIÓN
14.012
of 295.467
REPUTACIÓN
3
CONTRIBUCIONES
18 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
66.67%
VOTOS RECIBIDOS
2
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.912
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
im2uint8 only generates 0 or 255
I am trying to present an image of class double using imshow. suppose this is the image: a = [78.4630409671845,90,0; 78.4...
casi 4 años hace | 1 respuesta | 1
1
respuestaPregunta
How to compare two 3D matrices element-wise?
I have two RGB images (3D matrix: x, y, z) of the same size, and I wanted to compare the corresponding values. Suppose there ar...
casi 4 años hace | 1 respuesta | 0
1
respuestaPregunta
How to apply conditions to fill an area in 3D space?
I wanted to fill an area in 3D space using some conditions on a vector. Suppose the vector is: x1 = 100; y1 = 100; z1 = 100;...
casi 4 años hace | 0 respuestas | 0
0
respuestasPregunta
Watermarking in the Frequency Domain
I am new in Matlab and I have an assignment that is asking for watermarking an image using DCT transform: Read Lin.jpg color im...
alrededor de 4 años hace | 0 respuestas | 0
0
respuestasPregunta
How to get the threshold value from Otsu's method?
On MathWorks webpage for the function imbinarize it says: "Use graythresh or otsuthresh to compute a global image threshold." ...
alrededor de 4 años hace | 0 respuestas | 0
0
respuestasPregunta
how to apply low pass and high pass filters using fft2 and fftshift?
I am trying to apply low-pass and high-pass filters on a jpg image. The filters are calculated by: function [cL,cH] = getfilte...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
How to know the size of imageDatastore?
Is there a function that returns the total number of images in an imageDatastore? For example, if I load images from a director...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
How to binarize a grayscale image with multiple thresholds?
I am trying to convert a grayscale image into a binary image with two thresholds: img = a grayscale image b = the output bin...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
How to overlay a binary mask over an rgb image?
I am trying to overlay a binary mask over an RGB color image. I want to change the white area of the mask to a transparent red a...
casi 5 años hace | 1 respuesta | 0
1
respuestaPregunta
How to perform a sparse eigendecomposition in order to compute only the eigenvectors of smallest eigenvalues?
I have a large n * n sparse matrix called L. k is a given value. I am supposed to do this: "perform a sparse eigendecomposition...
casi 5 años hace | 0 respuestas | 0
0
respuestasPregunta
How to create a custom matrix?
I want to create a matrix that look like this: The first n rows are all 0. The second n rows are calculated separately by som...
casi 5 años hace | 1 respuesta | 0
1
respuestaPregunta
How to enforce element-wise condition in matrix operations?
I am trying to use \ for Euler's backward method: where dt and lambda are constant numbers like: dt = 0.01 lambda = 0.5 an...
casi 5 años hace | 1 respuesta | 0
1
respuestaPregunta
How to implement backward Euler's method?
I am trying to implement these formulas: Forward Euler's method: this is what I have tried: x_new = (speye(nv)+ dt * lambda...
casi 5 años hace | 1 respuesta | 0
1
respuestaPregunta
How to calculate the volume of a 3D triangular mesh?
I have a pyramid with these vertices (each side is a triangle): [-4 0 5; 1 -5 5; 1 0 1; 1 5 5; 1 0 0] How can I calculate ...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Matrix division does not work because of matrix dimensions
I have two matrices: A: 5 by 5 B: 5 by 3 How can I claculate matrix division as B divided by A? I have used: B / A B \ ...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
How to replace for loop with vectorization?
Is there any way I can replace this for loop with a vectorized approach? v = zeros(4, 3); ii = [1 ; 2 ; 3 ; 1 ; 3 ; 4]; res =...
alrededor de 5 años hace | 2 respuestas | 0
2
respuestasPregunta
How to perform norm on each row of a matrix?
I have a matrix and each row of the matrix is a vector. I want to perform norm function on each row of this matrix and save the ...
alrededor de 5 años hace | 2 respuestas | 1
2
respuestasPregunta
How to calculate determinant of matrices without loop?
I am new to Matlab and this might seem very easy. I have 2 matrices: a = [1 1 1; 2 2 2 ; 3 3 3 ; 4 4 4 ; 5 5 5]; ...
alrededor de 5 años hace | 3 respuestas | 0