Answered
Summation of table imported from excel
Hello Luis Eloy García-Mauriño Rey, % Assuming xls data strored in variabl 'data' % colum 1 is Angle, colum 2 is Volume, colu...

bijna 3 jaar ago | 0

| accepted

Answered
Creating binary 3D mask from MR volume
Hello banikr, I think this is what you want ... if I am not wrong. load mri; % load mriVolume; %3D MRI data with data varia...

bijna 3 jaar ago | 0

Answered
Automated detection of diabetic retinopathy
Hello Anas Bilal, Code tested working on 2012.

bijna 3 jaar ago | 1

| accepted

Answered
RGB Color Space Image Segmentation
Hello Muftahu Kabir, Here is the code ... clear all; close all; clc; I = imread('1.jpg'); figure, imshow(I); IR = I(...

bijna 3 jaar ago | 0

| accepted

Answered
Searching a matrix and eliminating values below a certain value
Code is Not optimized, but works fine maxRow = 1; for i=1:size(A,2) BIndex = ismember(B,A(:,i)); BIndex = find(BInde...

bijna 3 jaar ago | 0

| accepted

Answered
How to filter objects based on size using"bwareafilt()" ?
in your code, there is a code part as show below img3=imcomplement(img2); don't use that. code works fine in 2014b. Here, RO...

bijna 3 jaar ago | 0

Answered
Codec Error with VideoReader function
Here is the solution what I found https://in.mathworks.com/matlabcentral/answers/218237-unable-to-determine-the-codec-required#...

bijna 3 jaar ago | 0

Answered
Unable to determine the codec required.
Hello, To solve the problem, I installed 'Media Player Codec Pack' and use the following code. vidObj = VideoReader('VideoFile...

bijna 3 jaar ago | 0

Answered
how make prediction with new data and display it?
Phase 01: Training 'trainingData.xlsx' contains data need to Train. trainingData = xlsread('trainingData.xlsx'); [trainedClas...

bijna 3 jaar ago | 1

Answered
Testing trained classifier model with new data
sample=miraudio(audio); will give 'miraudio object'. its NOT an array. 'peak2rms' builtin function of matlab will give an err...

bijna 3 jaar ago | 0