Risposto
Error related to datasets when using yolov2.
yes,sir,as the information,please make your image to rgb not gray,such as augimdsTrain = augmentedImageDatastore(inputSize(1:2)...

circa 4 anni fa | 0

| accettato

Risposto
How to use a self-made loss function for a simple Neural Network in Matlab?
yes,sir,may be it same on:https://ww2.mathworks.cn/matlabcentral/answers/1618945-how-to-use-a-self-made-loss-function-for-a-simp...

circa 4 anni fa | 0

Risposto
How to extract informative part from a signal ?
yes,sir,may be use data filter to smooth data vector,and check the diff to segment data,get the split index range to segment ...

circa 4 anni fa | 0

| accettato

Risposto
Invalid training data. Sequence responses must have the same sequence length as the corresponding predictors.
yes,sir,may be set sequenceInputLayer to sequenceInputLayer(10, ……) to match the input data,1*10 dimension

circa 4 anni fa | 0

| accettato

Risposto
How to use a self-made loss function for a simple Neural Net ?
net=newff([0,1],[5,1],{'tansig','logsig'},'traingd') net.performFcn for more information,please check https://www...

circa 4 anni fa | 0

Risposto
Index in position 2 exceeds array bounds (must not exceed 1)
yes,sir,may be upload 'offside.jpg' to debug may be check the 39 line,is it two columns matrix

circa 4 anni fa | 1

Risposto
determine pixel length and width of the body
yes,sir,may be use bwlabel and regionprops to get the area information may be upload your origin image,then we can do some anal...

circa 4 anni fa | 0

Risposto
Is there any limitation on the data ratio that is not suitable for cross-validation?
yes,sir,may be plot roc and confuse matrix to do some analysis

oltre 4 anni fa | 0

Risposto
How to train resnet50 model on multiple input?
yes,sir,may be use addLayers、connectLayers to merge net layers

oltre 4 anni fa | 0

Risposto
Hi, I want to apply arithmetic coding to the image. Can anyone help me?
clc; clear all; close all; img = imread('cameraman.tif'); data = img(:); input=double(data); [alphabet,~,seq]=unique(input)...

oltre 4 anni fa | 0

Risposto
Enhancing an RGB image to identify a feature
clc; clear all; close all; img = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/843265/image.jpeg'); ...

oltre 4 anni fa | 2

| accettato

Risposto
Hi everyone. I had problem to display my value into "edit field"
app.RSquareEditField.Value = norm([y1-y]);

oltre 4 anni fa | 0

| accettato

Risposto
I have an image with gaussian noise and periodic noise. How to remove gaussian noise from image?
clc; clear all; close all; I=imread('cameraman.tif'); subplot(1,2,1);imshow(I); J = imnoise(I,'gaussian'); [x, y]=meshgrid(...

oltre 4 anni fa | 0

| accettato

Risposto
how can I read and extract the 2 LSBs of every byte from the RGB image array ?
clc; clear all; close all; img = imread('cameraman.tif'); img2 = blockproc(img,[1 1],@sp); figure; imshowpair(img,img2,'monta...

oltre 4 anni fa | 0

| accettato

Risposto
Not enough input arguments
yes,sir,may be use [c_matrix,Result,RefereceResult]= confusion(actual,predict_label);

oltre 4 anni fa | 0

Risposto
Undefined function or variable
clc; clear all; close all; img = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/844815/image.jpeg'); f...

oltre 4 anni fa | 1

| accettato

Risposto
How to convert a DICOM image into a specific Gray Scale ?
yes,sir,may be use imtool to interactively adjust the grayscale parameters to view the effect

oltre 4 anni fa | 0

Risposto
Organise my Dataset images in 4 Array
How I can reach the main files of that example in MATLab database folders. click the button “Open live script” or check in fo...

oltre 4 anni fa | 0

| accettato

Risposto
When training a network with "trainNetwork", how to keep the trainable parameters from the begining to the end?
yes,sir,may be set options to train,such as options = trainingOptions('sgdm', ... 'MaxEpochs',20,... 'InitialLearnRat...

oltre 4 anni fa | 0

Risposto
Preparing a datastore for a multi-input CNN
visiondataPath = fullfile(matlabroot,'toolbox','vision','visiondata'); trdatstore = imageDatastore(visiondataPath,'IncludeSubfo...

oltre 4 anni fa | 0

Risposto
Why image doesnt show correctly while reading a binary file?
close all; clear all; clc; a = load('Rsaved1.bin'); a = reshape(a, 160, 90); b = load('Rsaved2.bin'); b = reshape(b, 160, ...

oltre 4 anni fa | 0

Risposto
Background modeling using univariate Gaussian density function.
yes,sir,may be use createBackgroundSubtractorMOG2,such as import cv2 as cv import numpy as np vid = cv.VideoCapture("D:/Pro...

oltre 4 anni fa | 0

Risposto
How to display second level dwt?
yes,sir,may be use the dimension information,such as close all; clear all; clc; %Reading picture by Matlab X=imread('camera...

oltre 4 anni fa | 1

| accettato

Risposto
No pixel label data found - using the pixelLabelTrainingData function...
yes,sir,when load the mat file,all field is empty, please check,such as a = load('gTruthSeq.mat'); a.gTruth.LabelDefinitions

oltre 4 anni fa | 0

Risposto
Interpolation method of IMAGE
yes,sir,may be default display size confused,such as clc; clear all; close all; x = zeros(640, 480, 3); x(:, 1:2:end, :) = 1;...

oltre 4 anni fa | 0

Risposto
What to do if insertText doesn't work, but there are no error codes?
yes,sir,may be use text to add text object on figure,or use insertText to generate a new image and imshow by another figure,such...

oltre 4 anni fa | 0

Risposto
Error using trainNetwork (line 183) Invalid network. Caused by: Layer 'fc7': Input size mismatch. Size of input to this layer is different from the expected input size
modify lgraph = replaceLayer(lgraph,'fc6',newFCLayer); to lgraph = replaceLayer(lgraph,'fc8',newFCLayer); net = alexnet; ne...

oltre 4 anni fa | 1

| accettato

Risposto
Selecting Images from the drop-down menu
% Value changed function: DropDown function DropDownValueChanged(app, event) value = lower(app.Dro...

oltre 4 anni fa | 0

| accettato

Risposto
how to display any image for 500 ms
clc; clear all; close all; % preapare data xyloObj = VideoReader('traffic.avi'); nFrames = xyloObj.NumberOfFrames; data = []...

oltre 4 anni fa | 1

Risposto
How to split imagedatastore and pixellabeldatastore
yes,sir,please check the help doc “Semantic Segmentation Using Deep Learning” we can learn the way to split data and label,such...

oltre 4 anni fa | 0

| accettato

Carica altro