Answered
Does black region of the rotated image affect the CNN classification accuracy?
Hi Yeah it will affect slightly. This is an augmentation technique, mostly it will improve the network accuracy. Yeah network...

nästan 3 år ago | 2

| accepted

Answered
Cropping multiple Images and save them in a folder
Hi By looking at your code, it seems the variable 'images' is not defined. You are creating a 'theFiles' variable, which contai...

nästan 3 år ago | 1

Answered
Specify Output Class For GAN Image Generator
Hi You can possibly try with conditional GAN to generate images of a particular class. For more information, you can refer thi...

nästan 3 år ago | 0

| accepted

Answered
Express vector of linear combinations as matrix product
Hi You can use diff function to express the differentials. For example, in your case syms x(t) y(t) a=5; b=6; c=7; d=8; e...

nästan 3 år ago | 0

Answered
How to detect 2D objects in LiDAR data
Hi You can follow this documentation of lidar labeler which explain the labeling process. For detection, you can use the pointP...

nästan 3 år ago | 2

| accepted

Answered
I have a following code and would also like to store all outputs that relate to "m". I was able to store all outputs of "i" but I'm struggling with storing those of every "m" value. Please help
Hi You can store the information correspondig to each m value into a cell array. For example clc; clear; ValTraded = {}; ...

nästan 3 år ago | 0

| accepted

Answered
How can I plot the Wavelet representation of a signal?
Hi You can refer this example of wavelet transform and spectrogram plot. Load the audio signal and follow this example. Hope it...

ungefär 3 år ago | 0

Answered
How do you do multi-class classification with a CNN network?
Hi As per your problem, I am assuming you are having multiple categorical objects in a single image. So the problem is no longe...

ungefär 3 år ago | 1

| accepted

Answered
Convolutional encoder decoder for image classification
Hi You can refer to the existing MATLAB examples of image classification. You can refer the below links for this: Link1 Link2...

ungefär 3 år ago | 0

Answered
Unrecognized function or variable 'functionhelperPlotScalogram3d'.
Hi The function helperPlotScalogram3d is a helper function shipped with Wavelet Transform example. You can find this function h...

ungefär 3 år ago | 0

Answered
Cellarray in a dlarray
Hi The dlarray is supported for full arrays of data type double, single, or logical, or for full gpuArrays. Use cell2mat functi...

ungefär 3 år ago | 0

Answered
Create model and estimate parameter
Hi It seems, theta is unknown here. You can vary theta and calculate F at different value of theta. For example, vary theta as ...

ungefär 3 år ago | 0

Answered
Using SVD for Dimensionality Reduction
Hi The first part is already answered here. For 2nd part, you can use the function pca to directly calculate the input with p...

ungefär 3 år ago | 2

| accepted

Answered
implementation of mini-batch stochastic gradient descent
Hi You mentioned that you are implementing a classification network. In your code, you are using square of L2 norm to calculat...

ungefär 3 år ago | 0

Answered
Determining the number of principal components
Hi The function svd returns the singular values in descending order, so you can consider first N values. Regarding the conside...

ungefär 3 år ago | 0

Answered
I can't use the function minibatchqueue. Maybe I don't know where to find the supporting function 'createBatchData'
Hi The function createBatchData supporting function is present in the example of YOLO v3 object detctor. You can find it here. ...

ungefär 3 år ago | 0

| accepted

Answered
Why bit plane 8 of my image is almost black?
Hi It seems, the image which you are displaying might be in double or single format. Convert it to uint8 format using uint8 com...

ungefär 3 år ago | 0

Answered
Can you please help me.
Hi To define a function, you can refer this documentation on function creation. To add all the vector elements, you can refer t...

ungefär 3 år ago | 0

| accepted

Answered
I am triying to solve values of g and h. I am getting " Empty sym: 0-by-1 ". How can I solve this ?
Hi Variable 'area' in your code is not defined. Either it is defined as a symbolic variable or some value needs to be assigned,...

ungefär 3 år ago | 0

Answered
Find the FPE of a VAR model
Hi You can refer to the 'varm'object functions here. Use 'estimate' method to fit a model to data and 'summarize' to display th...

ungefär 3 år ago | 0

Answered
Probability distribution- random function
Hi In this task, you can use rand, randi, randperm, round,histogram, mean functions to do these questions. For more information...

ungefär 3 år ago | 0

Answered
The version of GoogLeNet emplyed in Matlab
Hi The version of googlenet is inception v1. For more information, you can refer its documentation here.

ungefär 3 år ago | 0

| accepted

Answered
MATLAB Please write the code for this question.
Hi You can use tic - toc function and store the time into some variable as given below: tic Subject.name = input('What is you...

ungefär 3 år ago | 0

Answered
Image Classification Returning Different Results on Different Computers
Hi This is an unexpected behaviour. Check if all the data preprocessing steps are same, also the training parameters, number o...

ungefär 3 år ago | 0

Answered
How to transfer region props coordinates (saved in .mat file format) from one image to a similar image
Hi You can use regionprops function on the 1st image to find the pixel location of the components using 'PixelList' property of...

ungefär 3 år ago | 0

| accepted

Answered
How to write helper functions in Lidar 3-D object detections
Hi The helper functions are shipped with the example. You can check the helper functions in the example folder by using command...

ungefär 3 år ago | 0

| accepted

Answered
3D volumes overlay
Hi You can use the labelvolshow function to display a label overlay on 3D depth profile. For more information, refer its docume...

ungefär 3 år ago | 0

Answered
MATLAB code to cluster categorical data
Hi You can refer this documentation of clustering. Hope it will help!

ungefär 3 år ago | 0

Answered
Searching for Yellow Error, And is this the right way to write the 'if' Statement
Hi I assume, you want to find the pixels which satisfy the condition mentioned in your code. You can change your code to the be...

ungefär 3 år ago | 0

| accepted

Answered
How to apply CNN code on an input image with 3channels
Hi Looking at the dimension of voltage_img (which you mentioned), it seems it only contains the training input which consists o...

ungefär 3 år ago | 0

Load more