Community Profile

photo

MINO GEORGE


Last seen: 2ヶ月 前 2020 年からアクティブ

統計

  • Thankful Level 2
  • Thankful Level 1

バッジを表示

Content Feed

表示方法

質問


How to convert images into grayscale, which are stored in the imagedatastore then split into testing and training?
hi, I have 200 images in imagedatastore. I need to convert that images into grayscale and then split into training and testing....

約2年 前 | 1 件の回答 | 0

1

回答

質問


how to apply multiple feature set to a classify images
I have mutiple categories of images like kidney cyst, stone and normal. I have extracted the features of these images separately...

2年以上 前 | 1 件の回答 | 0

1

回答

質問


How to plot or mark the centroid of each cluster in the output image?
I have used k means algorithm to cluster the image into 6. After this how can i view the centroids of each cluster in the image?...

2年以上 前 | 1 件の回答 | 0

1

回答

質問


Why the output image is not visible after k means clustering ?
Here is the code, img_folder='C:\Users\COMSOL\Documents\MATLAB\kss'; fname = dir(fullfile(img_folder,'*.jpg')) grayImage= imr...

2年以上 前 | 1 件の回答 | 0

1

回答

質問


how to calculate the glcm features variance, dissimilarity, Inverse difference and sum of variance
Hi I am able to extract the 4 features from the image using graycomatrix(). But i wanted to extract all possible fetures from t...

2年以上 前 | 1 件の回答 | 0

1

回答

質問


How to segment a region or cluster from an image after k mean clustering
I need to extract some of the cysts and tumor regions from the the images. I have tried k means clustering and i am able to segm...

2年以上 前 | 1 件の回答 | 0

1

回答

質問


How to extract the features of each cluster in the k means clustering?
Hi , I need to extract the attributes of each cluster obtained from k means clustering. Is there any methods for that? Suggesti...

3年弱 前 | 2 件の回答 | 0

2

回答

質問


Why am I receiving this error message about k means ?
Error using kmeans Too many input arguments. Error in kmeans_grayscale_segmentation (line 53) [clusterIndexes, clusterCenters...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


Can anyone help me to segment the stone from the kidney image
Hi I am using k means clustering algorithm and this is code i have used grayLevels = double(grayImage(:)); [clusterIndexes,...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


I am getting this warning message while executing the k means cluster algorithm ?
Warning: Failed to converge in 100 iterations. > In kmeans/loopBody (line 479) In internal.stats.parallel.smartForReduce (l...

3年弱 前 | 0 件の回答 | 0

0

回答

質問


Why do I receive this error message?
MATLAB has experienced a low-level graphics error, and may not have drawn correctly. Read about what you can do to prevent this...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


Can anyone help me to solve this error in regionprops().
This is the code.The stats is a table, in that MajorAxisLength() and MinorAxisLength() is showing as 0*0 (double) gray = im...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


Can anyone help me to segment the kidney cyst region from the ultrasound image
The image is attached here. I wanted to segment the cyst region (the black round) in the image . Can anyone suggest suitable met...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


How to apply RBF kernel function in k means cluster? Here is the code
This is the code grayImage= imread('CYST RENAL -87.jpg'); g = rgb2gray(grayImage); g = double(g); sigma = 0.4; [n,d] = s...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


Error in k means clustering code. 'Error using reshape Number of elements must not change. Use [] as one of the size inputs to automatically calculate the appropriate size for that dimension.' The code is here.
grayImage= imread('CYST RENAL-33.jpg'); g = rgb2gray(grayImage); imshow(grayImage); b=grayImage(:); [m n]=kmeans(b,3); m=re...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


Can anyone help me to apply RBF kernel function in matlab and how to write its equation?
The equation is K(X,X') = exp(-||X-X'||2/2sigma2). Any help is appreciated

3年弱 前 | 1 件の回答 | 0

1

回答

質問


How to implement linear, quadratic and RBF kernel for an image segmentation in matlab
I have 100 ultrasound images and i wanted to segmenta particular part from that image using k means clustering algorithm. I need...

3年弱 前 | 0 件の回答 | 0

0

回答

質問


how to apply k means clustering algorithm for image segmentation in matlab and how to use kernel methods in that code
Hi, i don't know how to apply k means clustering algorithm to images for segmenting a portion. Any help is appreciated

3年弱 前 | 1 件の回答 | 0

1

回答

質問


How to save and view the calculated psnr, mse and snr values of multiple images using array?
This is my code [peaksnr, snr] = psnr(m, g); MSE=mean2((m-g).^2); how to display these measures in excel or in ...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


Error is getting when median filter is applied to dicom images. The code i am tried is here
info=dicominfo(filenames{1}); X = zeros([info.Height info.Width info.SamplesPerPixel file_num],'uint16'); for y = 1:file_num ...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


How to open and work with dicom images, which has no .dcm file extension.
Errorusing dicom images. Unable to perform assignment because the size of the left side is 564-by-800 and the size of the right ...

3年弱 前 | 2 件の回答 | 0

2

回答

質問


How to read multiple dicom image files from a folder ? This is the code. I am trying to calculate psnr and store it in excel, but i am getting blank sheet. Thanks in advance
clc; clear all; img_folder = 'C:\Users\COMSOL\Documents\MATLAB\2XXX00'; dicomlist = dir(fullfile(img_folder,'Images','*.dcm')...

3年弱 前 | 0 件の回答 | 0

0

回答

質問


How to remove small texts and drawings from an ultrasound image
Pls suggest any methods to remove texts and markings from the ultrasound image. Pls refer the attached image

3年以上 前 | 1 件の回答 | 0

1

回答

質問


Can anyone help me to write code for ROF to denoise images
hi I have some ultrasound images, i would like to perform ROF for denoising. Please help to write code for that

3年以上 前 | 0 件の回答 | 0

0

回答

質問


Why the denoised image is not visible after running wdenoise2 code
This is my code wdenoise2(double(gr),3,'Wavelet','coif5','NoiseEstimate','LevelDependent','DenoisingMethod','Bayes','Threshold...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


can anyone suggest some good denoising techniques for ultrasound images
I am trying to remove noises from ultrasound imges (.jpg images). Can anyone suggest some denoising techniques including deep le...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


How to install matlab without an Internet connection and is it possible to install matlab in more than two computer
I have installed Matlab in my laptop few months ago but now I’m working on another laptop and I would like to install Matlab in ...

3年以上 前 | 1 件の回答 | 0

1

回答