Answered
dlgradient: covariance matrix derivative.
yes,sir,may be use loop for every element in matrix clc; clear all; close all; [X1, X2] = meshgrid(linspace(0,1,10)); X1 = dl...

4 years ago | 0

Answered
Pixel label image has scalar pixel label IDs instead of RGB-triplet pixel label IDs
yes,sir,may be change the label datetype such as uint8(round([128 000 000])) if possible,may be upload your data mat file to ...

4 years ago | 0

Answered
Error when trying lstm regression not sure of the issue
yes,sir,may be change the layers,such as clc; clear all; close all; %Import/Upload data load generated_data.mat %transposing...

4 years ago | 0

Answered
Regenerating training verbose table from saved traininfo
yes,sir,if you want save the command information,may be use diary(log); diary on; run your code diary off; finally,you w...

4 years ago | 0

| accepted

Answered
How to create a neural network
yes,sir identify soy in an image using neural network,such as https://ww2.mathworks.cn/help/vision/ref/fasterrcnnobjectdetecto...

4 years ago | 0

Answered
How do I load the raw deep learning network?
yes,sir,may be use 'Weights','none' parameter net = googlenet('Weights','none')

4 years ago | 0

| accepted

Answered
I want to build a structure like digitTest4DArrayData with my data
yes,sir,may be use cell to store image data to get X,and vector to store label data to get Y,then save X and Y to mat file and r...

4 years ago | 0

Answered
Data in 4D array but still getting error and network issue
yes,sir,may be it the same data and problem,so here use target split data to train and test,such as clc; clear all; close all; ...

4 years ago | 0

Answered
Array formation and parentheses-style indexing with objects of class 'matlab.io.datastore.ImageDatastore' is not allowed.
yes,sir,may be use annotationsTrain = subset(imds,idxTrain);

4 years ago | 0

| accepted

Answered
Problems with optical character recognition
yes,sir,if we can get the figure or .fig file,may be use figure handle can get the property value but,if just image,it is an di...

4 years ago | 0

Answered
Problem with colormap using imshow()
yes,sir,may be set the max value to replace,such as clc; clear all; close all; main_image = 'cameraman.tif'; % Converts image...

4 years ago | 0

Answered
image splitting: what is the logic behind the following code? I need explanation.
yes,sir,it use to cut image top-left in to 4*4=16 block area,such as clc; clear all; close all; v = imread('football.jpg')...

4 years ago | 0

Answered
Is there an alternative to 5x5 median filter in MATLAB?
if use self define function,may be use colfilt、nlfilter to get block process,such as clc; clear all; close all; im = imread(...

4 years ago | 0

Answered
How to find the mean color value of superpixels (over-segmentation) for 3D label image ?
yes,sir,may be use for loop to split 3D image as 2D image list,and use mean2 on every image,finally rerange to 3D result output

4 years ago | 0

Answered
Classify photos based on their labels
yes,sir,may be upload full_df.xlsx now,i thinke filename is numberic vector, so current_filename=strrep(filename{idx}, char(...

4 years ago | 0

| accepted

Answered
How do I save a series of Output images in a folder (that is inside a for loop)?
for i = 1:251 imshow(img) hold on plot([xLeftY, xRightY], [yLeftY, yRightY], 'LineWidth',5,'Color','Yellow'); ...

4 years ago | 0

Answered
horizontal spectrogram subdivision of a wav file
yes,sir,may be use voicebox to split the audio,such as https://github.com/7yen/voicebox/blob/master/enframe.m

4 years ago | 0

Answered
imwrite problem value changes
yes,sir,may be use some parameter in imwrite,such as clc clear all close all a=rgb2gray(imread('football.jpg')); size(a) im...

4 years ago | 0

Answered
How to segment image with location wanted.
yes,sir,may be uload ArifSyazwan.dcm to do some analysis,such as clc clear all [spect map]=dicomread('ArifSyazwan.dcm'); i...

4 years ago | 0

| accepted

Answered
Number of observations in X and Y disagree. For convolution neural network
yes,sir,may be upload generated_data.mat to make some analysis

4 years ago | 0

| accepted

Answered
face mask deep learning label display
yes,sir,may be the consuming time too much,may be use face-api.js to get the faster application,such as https://github.com/just...

4 years ago | 0

Answered
How is it possible to separate features and target (both numerical values) in a tabular text datastore for input in Matlab's Deep Network Design module?
yes,sir,use Deep Network Design can get model structure and export it to script,may be export and modify it in code

4 years ago | 0

Answered
Multi input multi output for regression problem in deep learning
yes,sir,may be use cell to range data,make it to multi input (images) ,use one-hot to range label,make it to multi output (digit...

4 years ago | 0

Answered
An m-by-n-by-1 image cannot be used as input image in the Fully Convolutional Network FCN ?
yes,sir,may be change the data load,such as imageSize = [256 256 3]; augimds = augmentedImageDatastore(imageSize,dstrain,'Colo...

4 years ago | 0

Answered
How to coloured outline the region I want?
yes,sir,may be use some image enhancement to adjust the image

4 years ago | 0

Answered
Filling a region of a grayscale image with a colour corresponding to colorbar
yes,sir,use Image Analyst method,can get % Demo to have the user freehand draw an irregular shape over a gray scale image. % ...

4 years ago | 0

Answered
How can I quantify blobs in multiple images at once?
yes,sir,may be provide the filename information,such as clc; clear all; close all; % handle multiple images (78) at once Meas...

4 years ago | 0

| accepted

Answered
How to add filter just foreground and another filter to background?
clc; clear all; close all; I=imread('rice.png'); A=stdfilt(I); T=1; % G1 is foreground, G2 is background %% for i=1:16 ...

4 years ago | 0

| accepted

Answered
how do I find the smallest object in a binary coins image ?
clc; clear all; close all; im=imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/826480/image.png'); bw=im...

4 years ago | 0

Load more