(1) layer = imageInputLayer([28 28 1],Normalization="none")

 

輸入影像維度 28 * 28 * 1 灰階影像

 

 

 

(2) layer = convolution2dLayer(filterSize, numFilters)

 

 

(3)layer = batchNormalizationLayer() creates a batch normalization layer.


This type of layer normalizes each channel across a mini-batch.


This can be useful in reducing sensitivity to variations within the data.


 


(4) layer = reluLayer(Name="relu_1")






 





Rectified linear unit (ReLU) layer


 


(5) layer = additionLayer(numInputs)


creates an addition layer with the


number of inputs specified by numInputs. This layer takes multiple


inputs and adds them element-wise


 



(6) layer = fullyConnectedLayer(outputSize)


creates a fully connected layer.


outputSize specifies the size of the output for the layer.


fully connected layer will multiply the input by a matrix and then add


a bias vector.


 


(7) layer = softmaxLayer()


creates a softmax layer.


This layer is useful for classification problems.








 

 






 




me1237guy 發表在 痞客邦 留言(0) 人氣()



me1237guy 發表在 痞客邦 留言(0) 人氣()


 
宽度学习系统(Broad Learning System, BLS)
 
load abalone; %for this data set NumFea= 6 NumWin=5 NumEnhan=41;

me1237guy 發表在 痞客邦 留言(0) 人氣()


 
1. Import OpenStreetMap Data into Driving Scenario
 

me1237guy 發表在 痞客邦 留言(0) 人氣()

1. In order to send mail from the GMail server, the first step is that you have to decrease the security level of your Gmail settings, enable it by clicking here
 
2. You can run the following snip code directly or save them as a script file and run it

me1237guy 發表在 痞客邦 留言(0) 人氣()


 
1. Ryze Tello Drone Support from MATLAB
2. Parrot Minidrone Support from Simulink
3. PX4 Autopilots Support from Embedded Coder

me1237guy 發表在 痞客邦 留言(0) 人氣()

https://www.facebook.com/MATLAB/videos/372170376698253/

me1237guy 發表在 痞客邦 留言(0) 人氣()

今天試著編譯一個m檔案, 不過特別的地方是有用到jar檔案利用javaaddpath是無法讓compiler後的執行檔案找到對應jar檔案 1. 必須將jar放到 rootOfMATLAB\java\jar, 然後再進行編譯mcc –m 這樣編譯後才會找得到, 蝦~2. 經過一番努力google到[1], 原來MongoClient第二個參數有轉型@@
private static DB conectar() {
 MongoClient mongoClient = null;
 MongoCredential mongoCredential = MongoCredential
 .createMongoCRCredential("trivialuser", "trivial",
 "4btrivialmongouser".toCharArray());
 try {
 mongoClient = new MongoClient(new ServerAddress(
 "ds062797.mongolab.com", 62797),
 Arrays.asList(mongoCredential));
 } catch (UnknownHostException e) {
 e.printStackTrace();
 }
 
 DB db = mongoClient.getDB("trivial");
 System.out.println("Conexion creada con la base de datos");
 return db;
}

me1237guy 發表在 痞客邦 留言(0) 人氣()

set (gcf, 'WindowButtonMotionFcn', @mouseMove);其中moveMove為Callback function name
 1: function mouseMove (object, eventdata)
 2: C = floor( get(gca, 'CurrentPoint'));
 3: title(gca, ['(X,Y) = (', num2str(C(1,1)), ', ',num2str(C(1,2)), ')']);

me1237guy 發表在 痞客邦 留言(2) 人氣()

image
以前讀取avi檔案, 如果用內建aviread指令常常會發生無法讀取的窘境, 後來File Exchange有提供mmread指令, 可以避免這個狀況 網路上也有一些獨門秘計可以讓MATLAB可以讀影片, 例如透過ffmpeg轉檔等方法… 不過今天要講的是, 從MATLAB 2012 開始, Mathworks提供videoreader給使用者來讀取每個影格資訊,

me1237guy 發表在 痞客邦 留言(0) 人氣()

image
> imageBatchProcessor 這個是2015a版本才有的影像批次處理工具  (Image Batch Processor) 應用如MRI影像資料, 適合批次處理多張影像(image sequence)來源, 可以省去相關UI開發瑣事 使用者可以指定所要載入的影像序列需要經過哪些影像處理函式

me1237guy 發表在 痞客邦 留言(0) 人氣()

image
CNN: 下載   下載手寫數字資料庫 train-images-idx3-ubyte.gz:  training set images (9912422 bytes)
train-labels-idx1-ubyte.gz:  training set labels (28881 bytes)
t10k-images-idx3-ubyte.gz:   test set images (1648877 bytes)
t10k-labels-idx1-ubyte.gz:   test set labels (4542 bytes)

me1237guy 發表在 痞客邦 留言(8) 人氣()

1 2
Blog Stats
⚠️

成人內容提醒

本部落格內容僅限年滿十八歲者瀏覽。
若您未滿十八歲,請立即離開。

已滿十八歲者,亦請勿將內容提供給未成年人士。