Visualize the DNN parameters (filter) in spatial domain
dnn_showfeature(para_map,out_num,c);
Parameter maps to be visualized
Number of outputs to be shown
Colormap for visualization
This function is used to visualize the DNN parameters (filter) in spatial domain
// Initialize dnn_unloadallmodels dnn_path = fullpath(getIPCVpath() + '/images/dnn/'); net = dnn_readmodel(dnn_path + 'lenet5.pb','','tensorflow'); // Read Image S = imread(dnn_path + '3.jpg'); // Forward Pass para1 = dnn_getparam(net,"conv2d/Conv2D"); scf();dnn_showparam(para1); // Clean Up dnn_unloadallmodels(); | ![]() | ![]() |