已回答
How to crop an image inside a boundary ?
region=uint8(roipoly(img,position(:,1),position(:,2))); After getting the mask of the selected region from the above line in yo...

5 years 前 | 1

| 已接受

已回答
Deep Learning Memory issues for BiLstm mat files
Hi, You could use the Custom Mini-batch Datastore which uses the function sequenceDatastore that reads data from the specified...

5 years 前 | 0

已回答
How do i use sequentialfs in matlab when using neural networks (patternnet) as a model?
Hi, classf = @(xtrain,ytrain,xtest,ytest) sum(classify(ytest,xtest,train(ytrain,xtrain)) ~= ytest); In the above declaratio...

5 years 前 | 0

已回答
semantic segmentation of 4D MRI using 3D-UNet
Hi, Since you defined the Input Layer size as [64 64 64 4], it is expecting the input you provide to be of size [64 64 64]. Wh...

5 years 前 | 0

| 已接受

已回答
How do I use a trained network to make new predictions?
save KanushkaNet; The above command which you used will save all your current variables from the workspace. If you want to save...

5 years 前 | 0

已回答
trainYOLOv2ObjectDetector function details.
You can refer to the following link on how to use the trainYOLOv2ObjectDetector function: https://www.mathworks.com/help/vision...

5 years 前 | 0

| 已接受

已回答
How can i use the validation set in object detection using deep learning?
The trainFasterRCNNObjectDetector does not support the “ValidationData”, “ValidationFrequency” and “ValidationPatience” options ...

5 years 前 | 0

已回答
neural network regression model error
As I understand, your input dataset, “x” has size 1000 x 1 and the output, “y” has size 1000 x 1 and you are defining a regressi...

5 years 前 | 2

已回答
How to convert a binary image into lines only
Hi, You can use the command “bwskel” for this purpose. It takes two parameters as input, the binary image and minimum branch l...

5 years 前 | 0

已回答
How to read and store pixel intensity and coordinates values of a grayscale-converted image?
Hi, As I understand, you want to get the pixel intensity value of the grayscale image (B) at a particular location (xi, yi). ...

5 years 前 | 1