How can we give an hyperspectral image input vector of size 5X5X128 to convolutional neural network for Hyperspectral image classification in MATLAB?
Hi,
In this case, you can applied the 3-D Convolutional Neural Netwok (3-D CNN) in order to preserve the spatial and spectral dimensions of HSI (pixels neighbors and number of bands). Therefore, you can use the mdCNN MATLAB toolbox.
https://fr.mathworks.com/matlabcentral/fileexchange/58447-hagaygarty-mdcnn
You can use this code based on this toolbox:
%%%%%%%%%%%%%%%%%%%%% Input Setting%%%%%%%%%%
net.hyperParam.sizeFmInput = [5 5 128]; % size of input feature map
net.hyperParam.numFmInput = 1; % number of feature map of the input
%%%%%%%%%%%%%%%%%%%%% Layers specification %%%%%%%%%%
net.layers{end+1}.properties = struct('type',2,'numFm',7 , 'Activation',@Relu, 'dActivation',@dRelu,'kernel',5,'pad',2, 'stride', [2 2 4], 'pooling', [1 1 1]);
net.layers{end+1}.properties = struct('type',2,'numFm',17 , 'kernel',[5 5 3] ,'pad',[1 1 0], 'pooling', [1 1 1] , 'dropOut' ,0.8);
net.layers{end+1}.properties = struct('type',1,'numFm',128);
net.layers{end+1}.properties = struct('type',1,'numFm',10);
First create a network using a config file
net = CreateNet('HSI_classify.conf');
Then, call ‘Train’ function with the dataset containing the train/test samples:
net = Train(HSI,net, 3000);
Here , HSI is the dataset , this will train for 3000 samples from the test set .
GOOD LUCK
This publications may help
Chapter Spectral Reflectance Images and Applications
Article Spectral imaging method for material classification and insp...
I am looking for free Hyperspectral Image datasets on agricultural area containing reflectance values in .mat format. Can anyone please suggest any such datasets?
31 December 2019 10,004 1 View
How can we give Hyperspectral image data which is in .mat file format and has more than 3 channels to a convolutional neural networks(CNN)?In website lot of tutorials are available which use...
09 October 2018 544 4 View
While applying PCA or LDA on hyperspectral image what is the input vectors of each class.Are we taking the input samples(as vectors) of a class from different wavelength bands or we take an image...
07 August 2018 7,543 0 View
How to find Z transform in Python.
03 April 2018 5,189 1 View
How can we give an hyperspectral image input vector of size 5X5X128 to convolutional neural network for Hyperspectral image classification using MATLAB?
02 March 2018 1,049 0 View
1.I need the step by step proccedure using matlab toolbox for deep learning specific to Indian pines data set.
01 February 2018 856 5 View
Can any one suggest me any textbook or website for finding the most of the mathematical stuff related to Hyperspectral image Classification ?
01 February 2018 3,320 3 View
Dear Professor Smid, What is s(n),O(p),epsilon,n,k,U in your journal "Automated Classification of eddy current signatures during manual inspection"
01 February 2018 9,269 0 View
All Scientists,Research Scholars,Faculties
02 March 2016 4,474 2 View
Research Scholars,Faculties
01 February 2016 1,169 2 View
I'm targeting to deploy a mesh network and manually configure MANET routing protocols. I'm preparing scenarios, architectures, and hard devices needed to do that. Are there some step-by-step...
03 March 2021 1,931 5 View
I have selected brain tumor images ...but now found that already lots of research done n this topic.
03 March 2021 5,774 3 View
Is it possible to induce site-directed substitution mutation by quick-change method on linear dsDNA? or it has to be cloned in some vector? If yes, should it be treated with the Dpn1 enzyme...
03 March 2021 401 4 View
i am try to classify the x-ray images. During classification , can i block unwanted images (except x-ray image).
03 March 2021 7,100 1 View
Need to image mesoporous silica nanoparticles using the TEM. Also, need high resolution TEM images to see the mesoporous structure. Kindly suggest what kind of grids to use. Thanks, Shatadru
02 March 2021 1,787 2 View
Dear Colleagues, After running Western blot on PVDF membrane and detection using ECL, I would like to stain my PVDF with colloidal gold to be able to allign the ECL image with total proteins on...
02 March 2021 7,829 3 View
Is there a powerful system for the security of the systems distributed on IoT systems?
02 March 2021 3,858 10 View
I would like to research on MR images (0.5T and 3T). Can you please suggest some websites that I can download dataset including both 0.5T and 3T MR images? Thank you.
02 March 2021 7,735 3 View
Dear Researchers I am trying to perform a PIL simulation using STM32F4 Discovery board and comunication serial USB TO TTL. During simulation I receive the following timeout error: An error...
01 March 2021 2,327 1 View
Hello, I have classified 10 S3 OLCI images from the same area (althouth not the same size and/or quadrant) and I would like to do a final image using the mode of the pixel of these 10 images. I...
01 March 2021 9,874 3 View